From efa94e606904aa5532e4d78c96c8cd246e336c8d Mon Sep 17 00:00:00 2001 From: Christopher Leaman Date: Tue, 14 May 2019 14:06:12 +1000 Subject: [PATCH] Update notebooks --- .gitignore | 5 +- environment.yml | 3 + notebooks/01_exploration.ipynb | 9 +- notebooks/07_evaluate_model_performance.ipynb | 20 +- notebooks/11_investigate.ipynb | 42 +- notebooks/12_method_plots.ipynb | 14 +- notebooks/13_locality_plot.ipynb | 29 +- notebooks/14_beaches_Australia.geojson | 497 +++++++++++ notebooks/14_polygons_Australia.geojson | 121 +++ ...14_shoreline_position_vs_wave_energy.ipynb | 817 ++++++++++++++++++ notebooks/14_transects_Australia.geojson | 176 ++++ ...horeline_positions_vs_wave_energy_v2.ipynb | 656 ++++++++++++++ src/analysis/observed_storm_impacts.py | 14 +- 13 files changed, 2382 insertions(+), 21 deletions(-) create mode 100644 notebooks/14_beaches_Australia.geojson create mode 100644 notebooks/14_polygons_Australia.geojson create mode 100644 notebooks/14_shoreline_position_vs_wave_energy.ipynb create mode 100644 notebooks/14_transects_Australia.geojson create mode 100644 notebooks/15_shoreline_positions_vs_wave_energy_v2.ipynb diff --git a/.gitignore b/.gitignore index 97e20c6..1f48f60 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,10 @@ .ipynb_checkpoints/ /notebooks/*.png /notebooks/*.csv - +/notebooks/14_nearshore_waves/ +/notebooks/15_nearshore_waves/ +/notebooks/*.pkl +/notebooks/15_data/ # exclude data from source control by default /data/ diff --git a/environment.yml b/environment.yml index 8196edd..21ed866 100644 --- a/environment.yml +++ b/environment.yml @@ -5,6 +5,7 @@ dependencies: - python=3.6 - attrs - pre_commit + - beautifulsoup4 - autopep8 - black - cartopy @@ -23,6 +24,7 @@ dependencies: - notebook - numpy - pandas + - geopandas - pandoc - pip - plotly @@ -43,6 +45,7 @@ dependencies: - tqdm - yaml - yapf + - jupyterlab - pip: - blackcellmagic - mat4py diff --git a/notebooks/01_exploration.ipynb b/notebooks/01_exploration.ipynb index aa84d10..80918c9 100644 --- a/notebooks/01_exploration.ipynb +++ b/notebooks/01_exploration.ipynb @@ -604,6 +604,13 @@ "])" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "code", "execution_count": null, @@ -899,7 +906,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.6.7" }, "toc": { "base_numbering": 1, diff --git a/notebooks/07_evaluate_model_performance.ipynb b/notebooks/07_evaluate_model_performance.ipynb index b15db14..e80e135 100644 --- a/notebooks/07_evaluate_model_performance.ipynb +++ b/notebooks/07_evaluate_model_performance.ipynb @@ -655,10 +655,7 @@ "cell_type": "code", "execution_count": null, "metadata": { - "code_folding": [ - 23, - 223 - ] + "code_folding": [] }, "outputs": [], "source": [ @@ -921,6 +918,19 @@ "fig.savefig('07_c&p_confusion_matrix',dpi=600,bbox_inches = \"tight\")\n", "plt.show()" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "pd.options.display.max_columns = 500\n", + "print(\"Couldn't get forecast for: {} sites\".format(df_for.storm_regime.isna().sum()))\n", + "print(\"Couldn't get observations for: {} sites\".format(df_obs.storm_regime.isna().sum()))\n", + "\n", + "# df_obs[df_obs.storm_regime.isna()]" + ] } ], "metadata": { @@ -940,7 +950,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.6.7" }, "toc": { "base_numbering": 1, diff --git a/notebooks/11_investigate.ipynb b/notebooks/11_investigate.ipynb index 9b3e211..b66dd77 100644 --- a/notebooks/11_investigate.ipynb +++ b/notebooks/11_investigate.ipynb @@ -399,6 +399,46 @@ "f.savefig('11_change_in_beach_width.png',dpi=600)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Check prestorm and post storm width" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "ax.get_xaxis().get_major_ticks()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "x_col = \"width_msl_prestorm\"\n", + "y_col = \"width_msl_poststorm\"\n", + "\n", + "with sns.axes_style(\"white\"):\n", + " g = sns.jointplot(x=x_col,\n", + " y=y_col,\n", + " data=df.dropna(subset=[x_col, y_col]),\n", + " kind=\"hex\",\n", + " ylim=(0, 150),\n", + " xlim=(0, 150))\n", + "\n", + " x0, x1 = g.ax_joint.get_xlim()\n", + " y0, y1 = g.ax_joint.get_ylim()\n", + " lims = [max(x0, y0), min(x1, y1)]\n", + " g.ax_joint.plot(lims, lims, ':k') \n", + " " + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -824,7 +864,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.6.7" }, "toc": { "base_numbering": 1, diff --git a/notebooks/12_method_plots.ipynb b/notebooks/12_method_plots.ipynb index 9c40c5f..4d85160 100644 --- a/notebooks/12_method_plots.ipynb +++ b/notebooks/12_method_plots.ipynb @@ -1108,7 +1108,7 @@ "# Add title\n", "fig.text(\n", " 0.06, 1.14,\n", - " 'Variation in volume change\\nfor swash regime profiles',\n", + " 'Variation in beach width\\nchange for swash regime\\nprofiles',\n", " horizontalalignment='left',\n", " verticalalignment='top',\n", " size=8)\n", @@ -1592,6 +1592,18 @@ "language": "python", "name": "python3" }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + }, "toc": { "base_numbering": 1, "nav_menu": {}, diff --git a/notebooks/13_locality_plot.ipynb b/notebooks/13_locality_plot.ipynb index f9f0f17..df4fcc3 100644 --- a/notebooks/13_locality_plot.ipynb +++ b/notebooks/13_locality_plot.ipynb @@ -459,7 +459,7 @@ " label='Beaches included')\n", "\n", "handles = [legend_buoy, legend_gauge, legend_beaches]\n", - "names = ['Wave buoys', 'Tide gauges', 'Beaches']\n", + "names = ['Wave buoys', 'Tide gauges', 'Surveyed\\nbeaches']\n", "\n", "# create legend\n", "ax1.legend(handles, names, title=r'\\underline{Legend}', loc='lower left')\n", @@ -471,6 +471,13 @@ "ax1.text(153.111704-0.1, -30.300466, r'\\textsc{Coffs Harbour}', transform=ccrs.Geodetic(),ha='right',zorder=4)\n", "ax1.text(150.891708-0.1, -34.433129, r'\\textsc{Wollongong}', transform=ccrs.Geodetic(),ha='right',zorder=4)\n", "\n", + "ax1.plot(151.204325, -33.869810, transform=ccrs.Geodetic(),zorder=3,color='k',marker='.')\n", + "ax1.plot(151.784937, -32.928103, transform=ccrs.Geodetic(),zorder=3,color='k',marker='.')\n", + "ax1.plot(152.909329, -31.440207, transform=ccrs.Geodetic(),zorder=3,color='k',marker='.')\n", + "ax1.plot(153.111704, -30.300466, transform=ccrs.Geodetic(),zorder=3,color='k',marker='.')\n", + "ax1.plot(150.891708, -34.433129,transform=ccrs.Geodetic(),zorder=3,color='k',marker='.')\n", + "\n", + "\n", "ax2.text(133.729975, -25.173095, r'\\textsc{Australia}', transform=ccrs.Geodetic(),ha='center',zorder=4,va='bottom', fontsize=6, bbox=dict(facecolor=cartopy.feature.COLORS['land'],pad=0.1,linewidth=0, alpha=0.9))\n", "\n", "# # Add inset for Narrabeen\n", @@ -492,19 +499,19 @@ "metadata": {}, "outputs": [], "source": [ - "# Try using overpass api\n", - "# Hard because coastline is given as line string, not shapefile.\n", + "# # Try using overpass api\n", + "# # Hard because coastline is given as line string, not shapefile.\n", "\n", - "import overpass\n", - "api = overpass.API()\n", - "response = api.get('way[\"natural\"=\"coastline\"](-34, 151.0, -33, 152);out geom;')\n", - "coords = [x['geometry']['coordinates'] for x in response['features']]\n", + "# import overpass\n", + "# api = overpass.API()\n", + "# response = api.get('way[\"natural\"=\"coastline\"](-34, 151.0, -33, 152);out geom;')\n", + "# coords = [x['geometry']['coordinates'] for x in response['features']]\n", "\n", "\n", - "for line in coords:\n", - " lats = [x[1] for x in line]\n", - " lons = [x[0] for x in line]\n", - " ax3.plot(lons,lats, transform=ccrs.Geodetic())" + "# for line in coords:\n", + "# lats = [x[1] for x in line]\n", + "# lons = [x[0] for x in line]\n", + "# ax3.plot(lons,lats, transform=ccrs.Geodetic())" ] }, { diff --git a/notebooks/14_beaches_Australia.geojson b/notebooks/14_beaches_Australia.geojson new file mode 100644 index 0000000..5cd6818 --- /dev/null +++ b/notebooks/14_beaches_Australia.geojson @@ -0,0 +1,497 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "name": "Freshwater Beach", "id": "way4042219" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.293218912307509, -33.781066634474719 ], [ 151.293007100000011, -33.7810247 ], [ 151.292589600000014, -33.7810377 ], [ 151.29227, -33.7810559 ], [ 151.292243500000012, -33.7810606 ], [ 151.2917787, -33.7811402 ], [ 151.291275399999989, -33.7814005 ], [ 151.290956099999988, -33.7816384 ], [ 151.2906456, -33.781964 ], [ 151.2904212, -33.7821887 ], [ 151.2902351, -33.782416 ], [ 151.2900497, -33.7827854 ], [ 151.289960400000012, -33.7831579 ], [ 151.290084035745423, -33.783334902802281 ] ] } }, +{ "type": "Feature", "properties": { "name": "Dee Why Beach", "id": "way4042355" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.303411063235501, -33.747044628276164 ], [ 151.3031416, -33.7472302 ], [ 151.3010233, -33.7488294 ], [ 151.300486299999989, -33.749211 ], [ 151.299859, -33.7498619 ], [ 151.2990704, -33.7504902 ], [ 151.2987506, -33.7509923 ], [ 151.2983585, -33.7514321 ], [ 151.2981202, -33.7517823 ], [ 151.2977842, -33.7523211 ], [ 151.2976301, -33.7526817 ], [ 151.297572699999989, -33.7531612 ], [ 151.297574700000013, -33.7537708 ], [ 151.2976271, -33.7541219 ], [ 151.2976797, -33.7544217 ], [ 151.2979838, -33.7548115 ], [ 151.2982878, -33.7549845 ], [ 151.298464599999988, -33.7549616 ], [ 151.298503780069638, -33.754985420746571 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bilgola Beach", "id": "way4042505" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.330148782431678, -33.643740718639407 ], [ 151.330089, -33.6437427 ], [ 151.3299489, -33.6438216 ], [ 151.329315799999989, -33.6442383 ], [ 151.3285272, -33.6450887 ], [ 151.3277433, -33.6461698 ], [ 151.3275625, -33.6467486 ], [ 151.3276112, -33.6470322 ], [ 151.327725549892875, -33.647214980086993 ] ] } }, +{ "type": "Feature", "properties": { "name": "Warriewood Beach", "id": "way4044016" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.310044294706955, -33.687329332521877 ], [ 151.309983, -33.6875361 ], [ 151.309855, -33.6879784 ], [ 151.3096789, -33.6885264 ], [ 151.3095773, -33.6888866 ], [ 151.309483199999988, -33.6894683 ], [ 151.309364, -33.6900313 ], [ 151.309321399999988, -33.6905943 ], [ 151.3093417, -33.691023 ], [ 151.309468399999986, -33.691751 ], [ 151.309623499999987, -33.6920433 ], [ 151.3097252, -33.6921284 ], [ 151.309817846313791, -33.692137044660761 ] ] } }, +{ "type": "Feature", "properties": { "name": "Whale Beach", "id": "way4335014" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.333554691165517, -33.607806376730387 ], [ 151.333346400000011, -33.6077512 ], [ 151.333099800000014, -33.6078539 ], [ 151.3324891, -33.6082423 ], [ 151.3320909, -33.609425 ], [ 151.3315017, -33.6115918 ], [ 151.3315797, -33.6126818 ], [ 151.3316836, -33.6131018 ], [ 151.3321283, -33.6133542 ], [ 151.3323148, -33.6134342 ], [ 151.332325832743237, -33.613440564109922 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way4630817" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.158688726730048, -34.047750958736223 ], [ 151.1585605, -34.0479258 ], [ 151.158396900000014, -34.0481814 ], [ 151.157831, -34.0491415 ], [ 151.1574689, -34.049726 ], [ 151.1571443, -34.0502104 ], [ 151.157016493236199, -34.05039348874157 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5754657" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.673279182505297, -35.037735570674535 ], [ 150.673318099999989, -35.0379515 ], [ 150.6733427, -35.0381862 ], [ 150.673383300000012, -35.03844 ], [ 150.673388, -35.0385387 ], [ 150.673365100000012, -35.0386474 ], [ 150.6732534, -35.0389932 ], [ 150.673216, -35.039117 ], [ 150.6731962, -35.0393213 ], [ 150.673213800000013, -35.0394439 ], [ 150.673268900000011, -35.0396 ], [ 150.6733338, -35.0397601 ], [ 150.6734165, -35.0399639 ], [ 150.6735746, -35.0402987 ], [ 150.673807399999987, -35.04066 ], [ 150.673981199999986, -35.0407832 ], [ 150.6743981, -35.0408557 ], [ 150.6752107, -35.0414165 ], [ 150.675422995926823, -35.041471174625606 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5754660" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.675030297662829, -35.041291998854675 ], [ 150.6752107, -35.0414165 ], [ 150.6754627, -35.0414814 ], [ 150.6756723, -35.0416625 ], [ 150.675852, -35.0418718 ], [ 150.6770543, -35.042765 ], [ 150.677122, -35.0431545 ], [ 150.6768222, -35.0432302 ], [ 150.6768142, -35.0433005 ], [ 150.6770301, -35.0435528 ], [ 150.6770368, -35.0438431 ], [ 150.6771635, -35.0441591 ], [ 150.676750700000014, -35.0449501 ], [ 150.676386799999989, -35.0458684 ], [ 150.6763219, -35.0460654 ], [ 150.6762215, -35.0463043 ], [ 150.6761641, -35.0465503 ], [ 150.6761156, -35.0468052 ], [ 150.67609250000001, -35.0470975 ], [ 150.6761161, -35.0474504 ], [ 150.6761655, -35.0477297 ], [ 150.6762143, -35.0479798 ], [ 150.6763583, -35.0482663 ], [ 150.6765265, -35.0485063 ], [ 150.6766496, -35.0486908 ], [ 150.67683980000001, -35.0488759 ], [ 150.6770852, -35.0490487 ], [ 150.677351, -35.0491469 ], [ 150.6775079, -35.0492299 ], [ 150.6781512, -35.0492315 ], [ 150.6789066, -35.0494485 ], [ 150.679066, -35.0496899 ], [ 150.6785247, -35.0497479 ], [ 150.678062399999988, -35.0497141 ], [ 150.6779602, -35.0498675 ], [ 150.677934164870663, -35.049922870486341 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5757445" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.718399548824976, -35.006622648824994 ], [ 150.7183322, -35.0065553 ], [ 150.7181808, -35.0066361 ], [ 150.7179109, -35.006797 ], [ 150.7174681, -35.0070505 ], [ 150.7170394, -35.0072826 ], [ 150.7165642, -35.0075672 ], [ 150.7158552, -35.0079222 ], [ 150.715370299999989, -35.0079591 ], [ 150.714612, -35.0075837 ], [ 150.713585200000011, -35.0072546 ], [ 150.7130276, -35.0070495 ], [ 150.7125311, -35.0069426 ], [ 150.71184070000001, -35.0069045 ], [ 150.7112032, -35.0069332 ], [ 150.7099993, -35.0069979 ], [ 150.7089377, -35.0072021 ], [ 150.7081322, -35.007474 ], [ 150.707267699999989, -35.007697 ], [ 150.7054206, -35.0082903 ], [ 150.7032308, -35.0089936 ], [ 150.7022974, -35.0093239 ], [ 150.7012324, -35.0096806 ], [ 150.699837300000013, -35.0102006 ], [ 150.6983114, -35.0108023 ], [ 150.6970475, -35.0113727 ], [ 150.6953622, -35.0121501 ], [ 150.6939542, -35.012942 ], [ 150.6920986, -35.0140193 ], [ 150.6903663, -35.0150858 ], [ 150.689145200000013, -35.015883 ], [ 150.687976099999986, -35.0166574 ], [ 150.6869011, -35.0174521 ], [ 150.685695399999986, -35.0183568 ], [ 150.6844695, -35.0192597 ], [ 150.6832627, -35.0202136 ], [ 150.6817802, -35.0215221 ], [ 150.6808006, -35.0224047 ], [ 150.6801121, -35.0230551 ], [ 150.6791237, -35.02405 ], [ 150.678031299999986, -35.0251624 ], [ 150.6773847, -35.0258715 ], [ 150.6766675, -35.0266813 ], [ 150.675961199999989, -35.0276378 ], [ 150.6752353, -35.0286171 ], [ 150.6747177, -35.0293765 ], [ 150.674159300000014, -35.0302044 ], [ 150.6737688, -35.0308702 ], [ 150.673381799999987, -35.0317111 ], [ 150.6731948, -35.0323669 ], [ 150.6729765, -35.0332622 ], [ 150.6723964, -35.0347127 ], [ 150.671985400000011, -35.035728 ], [ 150.6719129, -35.0362115 ], [ 150.6716891, -35.0367747 ], [ 150.67128790000001, -35.0369953 ], [ 150.671398958989897, -35.037184582507791 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5760881" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.724808491510146, -35.000351718705183 ], [ 150.724814400000014, -35.000414 ], [ 150.7247328, -35.0005573 ], [ 150.7246637, -35.0006784 ], [ 150.7246477, -35.0008932 ], [ 150.7246628, -35.0012298 ], [ 150.7247288, -35.00142 ], [ 150.7247875, -35.0015946 ], [ 150.7248947, -35.0018197 ], [ 150.725033599999989, -35.0018738 ], [ 150.725126, -35.0019098 ], [ 150.725236127928213, -35.001957613290443 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5761347" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.72878162207536, -34.99516128697698 ], [ 150.7286066, -34.9951259 ], [ 150.728621299999986, -34.9952724 ], [ 150.728550399999989, -34.9953527 ], [ 150.728253099999989, -34.9954496 ], [ 150.7281226, -34.9954178 ], [ 150.728034086503015, -34.995453437959156 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5761348" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.728461413875749, -34.99538170355008 ], [ 150.728253099999989, -34.9954496 ], [ 150.7281226, -34.9954178 ], [ 150.7274299, -34.9956967 ], [ 150.727025200000014, -34.9959047 ], [ 150.726713100000012, -34.9961216 ], [ 150.72627030000001, -34.9965351 ], [ 150.7256344, -34.9969984 ], [ 150.7255495, -34.9971479 ], [ 150.7250685, -34.9977363 ], [ 150.7248826, -34.9980499 ], [ 150.7246872, -34.998403 ], [ 150.7245528, -34.9988391 ], [ 150.7244479, -34.9992868 ], [ 150.7244612, -34.9996647 ], [ 150.7244681, -35.0001824 ], [ 150.7248083, -35.0003497 ], [ 150.724814400000014, -35.000414 ], [ 150.724733652011849, -35.000555803758616 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5761350" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.7495318326541, -34.992069030955406 ], [ 150.7493445, -34.9919555 ], [ 150.7484684, -34.9920381 ], [ 150.7461429, -34.9919879 ], [ 150.7445239, -34.9918687 ], [ 150.742806, -34.9917001 ], [ 150.740733, -34.9918801 ], [ 150.736351, -34.9927346 ], [ 150.7345861, -34.9932007 ], [ 150.732667099999986, -34.9938655 ], [ 150.7310037, -34.9946077 ], [ 150.7297738, -34.9949781 ], [ 150.7291708, -34.9951369 ], [ 150.7290471, -34.9951666 ], [ 150.7288628, -34.9951777 ], [ 150.7286066, -34.9951259 ], [ 150.728621299999986, -34.9952724 ], [ 150.728614946293646, -34.995279596087705 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5761601" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.774362957021083, -35.001774271193852 ], [ 150.7741474, -35.0017352 ], [ 150.7734452, -35.0009442 ], [ 150.772939799999989, -35.0005361 ], [ 150.7724651, -35.0001526 ], [ 150.7717151, -34.9996395 ], [ 150.771032600000012, -34.9991725 ], [ 150.770412, -34.9987942 ], [ 150.7698532, -34.9983335 ], [ 150.769346399999989, -34.997872 ], [ 150.768612100000013, -34.9972215 ], [ 150.7679597, -34.996634 ], [ 150.767137, -34.9958076 ], [ 150.7663724, -34.995184 ], [ 150.765743, -34.9946953 ], [ 150.7646852, -34.9940533 ], [ 150.7636632, -34.9934644 ], [ 150.762443100000013, -34.9929492 ], [ 150.76124870000001, -34.9924713 ], [ 150.7600837, -34.9920828 ], [ 150.759263800000014, -34.9918357 ], [ 150.7579508, -34.9915754 ], [ 150.7571179, -34.9914182 ], [ 150.756013599999989, -34.991218 ], [ 150.7550818, -34.9910708 ], [ 150.7541349, -34.9909218 ], [ 150.7533238, -34.9907826 ], [ 150.752386, -34.9906475 ], [ 150.7519213, -34.9906309 ], [ 150.751524, -34.9906728 ], [ 150.7512035, -34.9907745 ], [ 150.7509535, -34.9908538 ], [ 150.7505749, -34.9909923 ], [ 150.750015600000012, -34.9912937 ], [ 150.7496265, -34.9917056 ], [ 150.749682197165242, -34.991917438490169 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabbage Tree Beach", "id": "way5761760" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.775228441538729, -35.023396190491312 ], [ 150.7750729, -35.0232418 ], [ 150.7749239, -35.0230483 ], [ 150.7747812, -35.0229018 ], [ 150.774496, -35.0226961 ], [ 150.7740638, -35.0224642 ], [ 150.773635899999988, -35.0222411 ], [ 150.7732293, -35.0220563 ], [ 150.7729248, -35.0219011 ], [ 150.7726438, -35.0218122 ], [ 150.7725246, -35.0217616 ], [ 150.772311699999989, -35.0217268 ], [ 150.7720988, -35.0216936 ], [ 150.771849800000012, -35.0216623 ], [ 150.7715794, -35.0216692 ], [ 150.7711217, -35.0217041 ], [ 150.7710323, -35.0216919 ], [ 150.7709769, -35.0216378 ], [ 150.7708151, -35.0214426 ], [ 150.770590199999987, -35.0210493 ], [ 150.7705575, -35.0209338 ], [ 150.77057645910557, -35.020830543383674 ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Beach", "id": "way5764133" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.787423324735101, -35.039954907595977 ], [ 150.787591099999986, -35.0398139 ], [ 150.787756699999989, -35.0396854 ], [ 150.7878446, -35.0395759 ], [ 150.7879189, -35.039468 ], [ 150.787944, -35.0393211 ], [ 150.7879527, -35.0391277 ], [ 150.7879696, -35.038649 ], [ 150.787971700000014, -35.0380661 ], [ 150.7879632, -35.0376111 ], [ 150.7878695, -35.0368546 ], [ 150.7878461, -35.0367657 ], [ 150.7878823, -35.0367152 ], [ 150.7879738, -35.0366838 ], [ 150.7880505, -35.036649 ], [ 150.788063200000011, -35.036581 ], [ 150.78801, -35.0365078 ], [ 150.7879547, -35.0364642 ], [ 150.787880199999989, -35.0363892 ], [ 150.7878014, -35.0359012 ], [ 150.7876822, -35.0353521 ], [ 150.7875885, -35.0348658 ], [ 150.787475699999987, -35.0344125 ], [ 150.787347899999986, -35.0340674 ], [ 150.786994600000014, -35.0332011 ], [ 150.7866986, -35.0325648 ], [ 150.786166400000013, -35.0317594 ], [ 150.7857492, -35.0311824 ], [ 150.7854192, -35.0308199 ], [ 150.785089199999987, -35.0305078 ], [ 150.7846869, -35.0301226 ], [ 150.7841355, -35.0296676 ], [ 150.7836948, -35.0293451 ], [ 150.783307400000012, -35.0290749 ], [ 150.7828284, -35.0287698 ], [ 150.7824005, -35.0285223 ], [ 150.781825700000013, -35.0282015 ], [ 150.781197600000013, -35.0279034 ], [ 150.780463200000014, -35.0275687 ], [ 150.7799459, -35.0273647 ], [ 150.779266799999988, -35.0271067 ], [ 150.7788836, -35.0269987 ], [ 150.7786132, -35.0269341 ], [ 150.778407932104301, -35.02685701429067 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5764134" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.783775760362062, -35.043695272636846 ], [ 150.7839927, -35.0437266 ], [ 150.784242299999988, -35.0431233 ], [ 150.784305951007838, -35.042913313931763 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bindijine Beach", "id": "way5765454" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.777429155259824, -35.055192040825773 ], [ 150.7776457, -35.0551568 ], [ 150.778231, -35.0548641 ], [ 150.778724, -35.0544482 ], [ 150.7792169, -35.0539707 ], [ 150.7795735, -35.0534533 ], [ 150.7797406, -35.052954 ], [ 150.7798252, -35.0524843 ], [ 150.779926499999988, -35.0521412 ], [ 150.7799345, -35.0519853 ], [ 150.779959632073485, -35.051924486084722 ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeymoon Bay Beach", "id": "way5765456" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.776478472382564, -35.057430581646315 ], [ 150.776536599999986, -35.0574673 ], [ 150.7766504, -35.0575668 ], [ 150.7767887, -35.0576313 ], [ 150.7769122, -35.0576522 ], [ 150.7769399, -35.0576017 ], [ 150.7769889, -35.0574396 ], [ 150.7770612, -35.0572688 ], [ 150.7770976, -35.0569974 ], [ 150.7770634, -35.0568244 ], [ 150.7769987, -35.0567434 ], [ 150.776942, -35.0566693 ], [ 150.776814300000012, -35.0565979 ], [ 150.7765972, -35.0565439 ], [ 150.7764673, -35.0565439 ], [ 150.776348399999989, -35.0566928 ], [ 150.776306402476848, -35.0566928 ] ] } }, +{ "type": "Feature", "properties": { "name": "Target Beach", "id": "way5773759" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.78350427596385, -35.07215885375588 ], [ 150.7835045, -35.072155 ], [ 150.783550100000014, -35.0719443 ], [ 150.78348840000001, -35.0719004 ], [ 150.783402599999988, -35.0718763 ], [ 150.783193399999988, -35.0718763 ], [ 150.7827052, -35.0719553 ], [ 150.7822171, -35.0720343 ], [ 150.7819489, -35.0721243 ], [ 150.7815975, -35.0722472 ], [ 150.781181800000013, -35.0725085 ], [ 150.780910799999987, -35.072796 ], [ 150.7807848, -35.0729695 ], [ 150.780817, -35.0732197 ], [ 150.780999400000013, -35.0733909 ], [ 150.781104, -35.0734326 ], [ 150.781227300000012, -35.07347 ], [ 150.7813014928889, -35.07352786273831 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Target Beach", "id": "way5773761" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.786519188202078, -35.073065668962087 ], [ 150.7864147, -35.0728729 ], [ 150.7862994, -35.0728158 ], [ 150.786122400000011, -35.0727565 ], [ 150.7858354, -35.0727104 ], [ 150.7853848, -35.0726424 ], [ 150.7851997, -35.0726029 ], [ 150.785170198881701, -35.072597345999739 ] ] } }, +{ "type": "Feature", "properties": { "name": "Silica Beach", "id": "way5773763" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.777445723776111, -35.079654944395195 ], [ 150.7774699, -35.079459 ], [ 150.7774125, -35.0792599 ], [ 150.7774091, -35.0790691 ], [ 150.7773989, -35.0788589 ], [ 150.777334700000011, -35.0786238 ], [ 150.777145499999989, -35.0783888 ], [ 150.7769596, -35.0782145 ], [ 150.776696, -35.0780597 ], [ 150.7763851, -35.0779712 ], [ 150.7761114, -35.077938 ], [ 150.7758039, -35.0779518 ], [ 150.7757059, -35.077938 ], [ 150.775585516452679, -35.07797216682804 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5774983" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.793740387878302, -35.076516406882845 ], [ 150.79373720000001, -35.0765014 ], [ 150.7937305, -35.0764191 ], [ 150.79375060000001, -35.0762973 ], [ 150.7937157, -35.0762841 ], [ 150.7935896, -35.0762665 ], [ 150.7934529, -35.0762709 ], [ 150.793243600000011, -35.0762402 ], [ 150.7931793, -35.0762578 ], [ 150.7931256, -35.0764663 ], [ 150.793124481226386, -35.076470163590827 ] ] } }, +{ "type": "Feature", "properties": { "name": "Abrahams Bosom Beach", "id": "way5775649" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.826059572651388, -35.010965401623579 ], [ 150.826135599999986, -35.01093 ], [ 150.826267, -35.0108948 ], [ 150.8266506, -35.0107652 ], [ 150.8270422, -35.0105939 ], [ 150.8274606, -35.010372 ], [ 150.8276859, -35.0102468 ], [ 150.827862900000014, -35.0102094 ], [ 150.828099, -35.010227 ], [ 150.828200900000013, -35.0102182 ], [ 150.8282599, -35.0101896 ], [ 150.828214300000013, -35.0101193 ], [ 150.827897799999988, -35.0099172 ], [ 150.827717255632024, -35.009793031997461 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5859040" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.67799070921987, -35.049821706317701 ], [ 150.6779602, -35.0498675 ], [ 150.677875, -35.0500487 ], [ 150.677841, -35.0502613 ], [ 150.6775514, -35.0507702 ], [ 150.677176800000012, -35.0515266 ], [ 150.6766275, -35.0529452 ], [ 150.6762885, -35.0541248 ], [ 150.6755632, -35.0568807 ], [ 150.674771099999987, -35.0592467 ], [ 150.6744007, -35.0609126 ], [ 150.6742815, -35.0618536 ], [ 150.6743303, -35.0633353 ], [ 150.6745668, -35.0648333 ], [ 150.67462, -35.0651923 ], [ 150.6747669, -35.0658021 ], [ 150.6748967, -35.0662099 ], [ 150.6750969, -35.0666542 ], [ 150.6754609, -35.0672832 ], [ 150.676037799999989, -35.0682294 ], [ 150.6762053, -35.0684736 ], [ 150.6765213, -35.0689328 ], [ 150.6766345, -35.0690752 ], [ 150.6767815, -35.0691568 ], [ 150.67699603581508, -35.069202585082486 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5870544" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.676595445690026, -35.069026071610054 ], [ 150.6766345, -35.0690752 ], [ 150.6767815, -35.0691568 ], [ 150.6770603, -35.0692163 ], [ 150.677332400000012, -35.0692992 ], [ 150.677744600000011, -35.0694956 ], [ 150.6778731, -35.0695606 ], [ 150.6780167, -35.0696505 ], [ 150.678089300000011, -35.0697072 ], [ 150.678158599999989, -35.0697598 ], [ 150.678331340102773, -35.069624789972288 ] ] } }, +{ "type": "Feature", "properties": { "name": "Orion Beach", "id": "way5871471" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.68155982040679, -35.06959975218718 ], [ 150.6817772, -35.0696285 ], [ 150.6821051, -35.0697156 ], [ 150.6823499, -35.0697836 ], [ 150.6825905, -35.0697957 ], [ 150.6827693, -35.0698062 ], [ 150.6829864, -35.0698027 ], [ 150.6831206, -35.0698271 ], [ 150.683280200000013, -35.0698811 ], [ 150.683388799999989, -35.0699439 ], [ 150.6836059, -35.0700223 ], [ 150.6839572, -35.0701076 ], [ 150.6843212, -35.0702261 ], [ 150.6846193, -35.0703446 ], [ 150.685089799999986, -35.070592 ], [ 150.6852814, -35.0706948 ], [ 150.685622, -35.0707837 ], [ 150.6857008, -35.0707837 ], [ 150.6857455, -35.0707331 ], [ 150.6857689, -35.0706983 ], [ 150.6858157, -35.0706826 ], [ 150.685816663770737, -35.070682814971271 ] ] } }, +{ "type": "Feature", "properties": { "name": "Blenheim Beach", "id": "way5871476" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.691877680242044, -35.082163219469898 ], [ 150.6918255, -35.0821988 ], [ 150.691693500000014, -35.0822824 ], [ 150.691540300000014, -35.0824357 ], [ 150.691453, -35.0826309 ], [ 150.691397599999988, -35.0828887 ], [ 150.6913955, -35.0831848 ], [ 150.6914232, -35.0834549 ], [ 150.6915147, -35.083697 ], [ 150.691721199999989, -35.0838573 ], [ 150.691917100000012, -35.0838991 ], [ 150.691936765281241, -35.083897972573162 ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenfields Beach", "id": "way5871674" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.692907922082725, -35.086817080477296 ], [ 150.6928495, -35.086831 ], [ 150.6926962, -35.0868745 ], [ 150.692471899999987, -35.0870832 ], [ 150.6922692, -35.0877386 ], [ 150.692184700000013, -35.088311 ], [ 150.692238800000013, -35.0887037 ], [ 150.6923131, -35.0889166 ], [ 150.6924483, -35.0890797 ], [ 150.6926349, -35.0892067 ], [ 150.69284509092094, -35.089269895950778 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5873935" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.693880634152691, -35.092688237612549 ], [ 150.693694099999988, -35.092804 ], [ 150.6934967, -35.0929911 ], [ 150.6934898, -35.0930971 ], [ 150.693404, -35.0944237 ], [ 150.6933798, -35.0960434 ], [ 150.693597399999987, -35.0980741 ], [ 150.693752627485139, -35.09822928971689 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5873936" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.693927458672277, -35.099713641415967 ], [ 150.6937666, -35.099863 ], [ 150.693597399999987, -35.0999113 ], [ 150.6934282, -35.1001531 ], [ 150.693452400000012, -35.1006124 ], [ 150.6936699, -35.100975 ], [ 150.69365451261595, -35.101217037270395 ] ] } }, +{ "type": "Feature", "properties": { "name": "Hyams Beach", "id": "way5874312" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.693683390044697, -35.101680767554377 ], [ 150.6937016, -35.1018995 ], [ 150.6936699, -35.1021837 ], [ 150.6936216, -35.102909 ], [ 150.6937666, -35.1047462 ], [ 150.693853, -35.1054227 ], [ 150.6940567, -35.1070187 ], [ 150.6944435, -35.109146 ], [ 150.6951688, -35.1120953 ], [ 150.696232400000014, -35.1154314 ], [ 150.697441199999986, -35.1184774 ], [ 150.6985532, -35.1205564 ], [ 150.6995665, -35.1220441 ], [ 150.700511299999988, -35.1229013 ], [ 150.7015025, -35.1234815 ], [ 150.7024936, -35.1238441 ], [ 150.703436399999987, -35.1240133 ], [ 150.7040427, -35.1241055 ], [ 150.704223500000012, -35.124133 ], [ 150.704401011952029, -35.124003929919326 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5875683" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.685965519439037, -35.070764656541563 ], [ 150.6859839, -35.0708063 ], [ 150.6860137, -35.0708812 ], [ 150.6860967, -35.0709405 ], [ 150.6868184, -35.07139 ], [ 150.6875933, -35.0718448 ], [ 150.6883427, -35.0721497 ], [ 150.6888387, -35.0722716 ], [ 150.6892389, -35.0722995 ], [ 150.689568900000012, -35.0722472 ], [ 150.689828, -35.0721348 ], [ 150.6899819, -35.071972 ], [ 150.6900564, -35.0719214 ], [ 150.6901437, -35.0718901 ], [ 150.690307600000011, -35.071911 ], [ 150.6907036, -35.0719963 ], [ 150.691338, -35.0722525 ], [ 150.6917106, -35.0723762 ], [ 150.6920767, -35.0724284 ], [ 150.6925429, -35.0724319 ], [ 150.693060300000013, -35.0723779 ], [ 150.6934243, -35.0722769 ], [ 150.6938032, -35.0721584 ], [ 150.694075700000013, -35.072066 ], [ 150.6944447, -35.0718323 ], [ 150.6946335, -35.0716165 ], [ 150.6949166, -35.0713308 ], [ 150.6950508, -35.0711914 ], [ 150.6951636, -35.0711095 ], [ 150.6952785, -35.0710851 ], [ 150.6954212, -35.0711078 ], [ 150.695638300000013, -35.0711548 ], [ 150.6960407, -35.0712123 ], [ 150.69636, -35.0712036 ], [ 150.6965175, -35.0711583 ], [ 150.69671550000001, -35.0711722 ], [ 150.696996500000012, -35.0711984 ], [ 150.6970662, -35.0711219 ], [ 150.6970713, -35.0710224 ], [ 150.697066915764992, -35.070990626429634 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5883225" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.70978782075457, -35.124194020736589 ], [ 150.7097958, -35.1244133 ], [ 150.7098809, -35.1245212 ], [ 150.710108600000012, -35.1248111 ], [ 150.7108064, -35.1255919 ], [ 150.7111239, -35.1259473 ], [ 150.7120184, -35.1270835 ], [ 150.7129129, -35.128534 ], [ 150.714387499999987, -35.1303471 ], [ 150.7162248, -35.1323294 ], [ 150.717989499999987, -35.1339732 ], [ 150.7196817, -35.1350611 ], [ 150.7213846, -35.1358232 ], [ 150.7229817, -35.1363054 ], [ 150.7243981, -35.1364862 ], [ 150.7253366, -35.1364353 ], [ 150.7254829, -35.1363054 ], [ 150.7255322, -35.136143 ], [ 150.725546973713591, -35.136094343395619 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5884049" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.727079829647664, -35.135321615077707 ], [ 150.727298100000013, -35.1353446 ], [ 150.727658, -35.1355041 ], [ 150.7281366, -35.1356903 ], [ 150.728329373365852, -35.135585157310715 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5884056" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.729208595546538, -35.135827003657475 ], [ 150.7293987, -35.1359367 ], [ 150.7301716, -35.136316 ], [ 150.7305757, -35.1364667 ], [ 150.7312712, -35.1366543 ], [ 150.7322092, -35.1368788 ], [ 150.733315, -35.1370985 ], [ 150.7341317, -35.1372387 ], [ 150.7350132, -35.1373881 ], [ 150.735909600000014, -35.1375303 ], [ 150.7367882, -35.137596 ], [ 150.7376468, -35.13765 ], [ 150.738564200000013, -35.1376638 ], [ 150.7397477, -35.1375808 ], [ 150.739791142870331, -35.137365672423741 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5884067" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.739528745830427, -35.137596155467747 ], [ 150.7397477, -35.1375808 ], [ 150.7397935, -35.137354 ], [ 150.7401125, -35.1371155 ], [ 150.740412099999986, -35.1368739 ], [ 150.7405683, -35.1369413 ], [ 150.7406427, -35.1368917 ], [ 150.7407872, -35.1367565 ], [ 150.74103550000001, -35.1367452 ], [ 150.7415211, -35.1368525 ], [ 150.7421773, -35.1368203 ], [ 150.7428983, -35.136832 ], [ 150.7437433, -35.1367919 ], [ 150.744738500000011, -35.1366299 ], [ 150.7455254, -35.1363984 ], [ 150.74599280000001, -35.13626 ], [ 150.7464742, -35.1360281 ], [ 150.7470451, -35.135767 ], [ 150.7474685, -35.135589 ], [ 150.7476266, -35.1353882 ], [ 150.7479123, -35.1351481 ], [ 150.7480794, -35.1350436 ], [ 150.7482733, -35.1348714 ], [ 150.748332607251029, -35.134660105821695 ] ] } }, +{ "type": "Feature", "properties": { "name": "Currarong Beach", "id": "way5953437" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.812295245350128, -35.013147347823022 ], [ 150.8125166, -35.0131856 ], [ 150.8130363, -35.0136205 ], [ 150.8136881, -35.0139259 ], [ 150.8162241, -35.0147288 ], [ 150.817511599999989, -35.0149803 ], [ 150.8187011, -35.0150792 ], [ 150.819326100000012, -35.0150462 ], [ 150.8198947, -35.0152241 ], [ 150.820399, -35.0152241 ], [ 150.8207477, -35.015211 ], [ 150.8211291, -35.0151434 ], [ 150.821560799999986, -35.015033 ], [ 150.821814, -35.0149082 ], [ 150.821868099999989, -35.014839 ], [ 150.8218837, -35.0147655 ], [ 150.821929008664142, -35.014707134216614 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5953443" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.767150911653232, -34.905931436376129 ], [ 150.766894, -34.9059187 ], [ 150.7665024, -34.9064466 ], [ 150.7657728, -34.9103355 ], [ 150.765602699999988, -34.9131841 ], [ 150.7656036, -34.9150613 ], [ 150.765722399999987, -34.9172424 ], [ 150.7660406, -34.9193398 ], [ 150.7666346, -34.92163 ], [ 150.7674547, -34.9239537 ], [ 150.7680777, -34.9255514 ], [ 150.7688971, -34.9267679 ], [ 150.770008600000011, -34.9281144 ], [ 150.7713372, -34.9294893 ], [ 150.7723535, -34.9304688 ], [ 150.7735233, -34.9313061 ], [ 150.773932699999989, -34.9313339 ], [ 150.774671399999988, -34.9318219 ], [ 150.776033399999989, -34.932253 ], [ 150.776355099999989, -34.9322946 ], [ 150.776778900000011, -34.9322039 ], [ 150.7776101, -34.9322197 ], [ 150.778088200000013, -34.9320843 ], [ 150.7784513, -34.9317115 ], [ 150.778508, -34.9316896 ], [ 150.778475238824598, -34.931473145404809 ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Beach", "id": "way5954873" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.815793004889485, -34.773436694973739 ], [ 150.8157031, -34.7734238 ], [ 150.815640699999989, -34.7734212 ], [ 150.8155741, -34.7734184 ], [ 150.8129079, -34.7736253 ], [ 150.8093245, -34.7742246 ], [ 150.8020933, -34.777027 ], [ 150.7959564, -34.7805871 ], [ 150.7887251, -34.7858566 ], [ 150.7814081, -34.7927821 ], [ 150.7749278, -34.7999185 ], [ 150.7682974, -34.808728 ], [ 150.7618118, -34.8186794 ], [ 150.757692, -34.8273813 ], [ 150.7550741, -34.834497 ], [ 150.753348100000011, -34.839675 ], [ 150.7515122, -34.8478111 ], [ 150.751202400000011, -34.8493343 ], [ 150.7493878, -34.8594503 ], [ 150.749196899999987, -34.8614875 ], [ 150.749023099999988, -34.8633414 ], [ 150.7485081, -34.8735877 ], [ 150.748787, -34.8814212 ], [ 150.749967199999986, -34.8866138 ], [ 150.7511474, -34.8898876 ], [ 150.7534863, -34.8936364 ], [ 150.756662, -34.8976315 ], [ 150.760175, -34.9002566 ], [ 150.760379454946218, -34.900178890829203 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5955218" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.829129627405564, -34.76068979551011 ], [ 150.8291036, -34.7607606 ], [ 150.8289799, -34.760849 ], [ 150.8285453, -34.7610089 ], [ 150.8283104, -34.7612395 ], [ 150.8274685, -34.7623172 ], [ 150.8265285, -34.7638578 ], [ 150.826673090880945, -34.764021795259765 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Frazer Beach", "id": "way6080023" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.626761632963735, -33.186832035260842 ], [ 151.6267603, -33.1868165 ], [ 151.626927, -33.1866776 ], [ 151.6263993, -33.1863906 ], [ 151.626226162853385, -33.186517126066008 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way6080029" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.622047173954257, -33.190664587569394 ], [ 151.6221036, -33.1908715 ], [ 151.6224554, -33.1911307 ], [ 151.622696100000013, -33.1913807 ], [ 151.62290165876118, -33.191442360226169 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way7451332" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.735792244079221, -32.969364885445195 ], [ 151.7355787, -32.9693809 ], [ 151.7354263, -32.9696075 ], [ 151.735077600000011, -32.9698008 ], [ 151.734642799999989, -32.9699517 ], [ 151.7343567, -32.9701078 ], [ 151.733260800000011, -32.9709207 ], [ 151.732929500000012, -32.9711677 ], [ 151.732666, -32.9713303 ], [ 151.7317981, -32.9720091 ], [ 151.7313395, -32.9725397 ], [ 151.7311932, -32.9727104 ], [ 151.7305919, -32.9734119 ], [ 151.7304031, -32.9736322 ], [ 151.729167600000011, -32.9750367 ], [ 151.7279842, -32.9766884 ], [ 151.7269047, -32.978314 ], [ 151.727005905546037, -32.978504509942368 ] ] } }, +{ "type": "Feature", "properties": { "name": "Dixon Park Beach", "id": "way7481317" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.765851539127965, -32.942966367489952 ], [ 151.7656729, -32.9430839 ], [ 151.7654001, -32.9433881 ], [ 151.764997099999988, -32.9436551 ], [ 151.7637283, -32.9444083 ], [ 151.7619871, -32.9453767 ], [ 151.7605321, -32.9463652 ], [ 151.759132599999987, -32.9473426 ], [ 151.758961753848268, -32.947472623300229 ] ] } }, +{ "type": "Feature", "properties": { "name": "Susan Gilmore Beach", "id": "way7481326" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.772303606861186, -32.939346467669139 ], [ 151.7720898, -32.9393497 ], [ 151.771361399999989, -32.9397788 ], [ 151.771421797572629, -32.940003211572908 ] ] } }, +{ "type": "Feature", "properties": { "name": "Newcastle Beach", "id": "way7481350" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.787717311600488, -32.929917262029683 ], [ 151.7876901, -32.9299045 ], [ 151.7876425, -32.9298651 ], [ 151.7875814, -32.929752 ], [ 151.786865299999988, -32.930048 ], [ 151.7861773, -32.930442 ], [ 151.78578, -32.9308075 ], [ 151.7858214, -32.930858 ], [ 151.7858297, -32.930911 ], [ 151.7857787, -32.9309007 ], [ 151.7857021, -32.9308711 ], [ 151.7855161, -32.9307369 ], [ 151.785089699999986, -32.9309846 ], [ 151.7847893, -32.9312029 ], [ 151.7842287, -32.9317545 ], [ 151.784097300000013, -32.9320922 ], [ 151.783981899999986, -32.9323286 ], [ 151.783799499999986, -32.9323533 ], [ 151.7832324, -32.9322489 ], [ 151.783110432191819, -32.932424512523802 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nobbys Beach", "id": "way7487200" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.799491419978636, -32.917734971246603 ], [ 151.799295300000011, -32.9178204 ], [ 151.799295300000011, -32.9183535 ], [ 151.7994397, -32.9188866 ], [ 151.7995952, -32.919442 ], [ 151.7995952, -32.9197196 ], [ 151.7992509, -32.9198529 ], [ 151.798184600000013, -32.9203416 ], [ 151.7975293, -32.9204305 ], [ 151.7967629, -32.9208748 ], [ 151.7960299, -32.9213857 ], [ 151.795241299999986, -32.9217522 ], [ 151.794197200000013, -32.9225741 ], [ 151.7935975, -32.923185 ], [ 151.7934807, -32.9233953 ], [ 151.79309760000001, -32.9240847 ], [ 151.7929427, -32.9252521 ], [ 151.792985510091256, -32.925461544614102 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pebbly Beach", "id": "way12591715" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.33116234805388, -35.608334768875807 ], [ 150.331037, -35.608212 ], [ 150.3308299, -35.6080267 ], [ 150.3304889, -35.6079801 ], [ 150.3300448, -35.6080145 ], [ 150.3292004, -35.6082625 ], [ 150.3283255, -35.6086633 ], [ 150.3275664, -35.6091051 ], [ 150.327255, -35.6094191 ], [ 150.3270887, -35.6097464 ], [ 150.3270635, -35.60998 ], [ 150.3269817, -35.6101636 ], [ 150.3261292, -35.6109774 ], [ 150.3257304, -35.6112513 ], [ 150.324863099999988, -35.6117438 ], [ 150.3246728, -35.6118438 ], [ 150.3243578, -35.6118229 ], [ 150.324319621464525, -35.611835080492426 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way13765572" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.686307776773702, -35.168252441795644 ], [ 150.686353200000013, -35.1682633 ], [ 150.6865128, -35.1681739 ], [ 150.6866033, -35.1679281 ], [ 150.6867976, -35.1676001 ], [ 150.6866473, -35.1666335 ], [ 150.68616080000001, -35.1657569 ], [ 150.6854949, -35.1652076 ], [ 150.6845803, -35.1648659 ], [ 150.684367319885695, -35.164919097669042 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way13765578" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.691645387895591, -35.171562338766861 ], [ 150.691724099999988, -35.1713573 ], [ 150.6915902, -35.17075 ], [ 150.6909164, -35.1698251 ], [ 150.6903059, -35.1694829 ], [ 150.6897526, -35.1693148 ], [ 150.68927, -35.1692396 ], [ 150.6890793, -35.169295 ], [ 150.688867894833351, -35.169354434655922 ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Reef Beach", "id": "way13858409" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.315553007266999, -33.742261614430284 ], [ 151.3154405, -33.7422289 ], [ 151.315341499999988, -33.7422187 ], [ 151.3150425, -33.7422326 ], [ 151.3148969, -33.742252 ], [ 151.314739, -33.742288 ], [ 151.314514, -33.7423021 ], [ 151.3143365, -33.7423201 ], [ 151.313848, -33.7424171 ], [ 151.313721, -33.7424581 ], [ 151.313675499999988, -33.7424785 ], [ 151.31363060000001, -33.7425123 ], [ 151.3135259, -33.7426186 ], [ 151.3134839, -33.7426339 ], [ 151.313292499999989, -33.7426961 ], [ 151.3131118, -33.7427826 ], [ 151.313031599999988, -33.7428288 ], [ 151.312956, -33.7428495 ], [ 151.312818, -33.7429483 ], [ 151.3127658, -33.742977 ], [ 151.3127299, -33.7429796 ], [ 151.3126475, -33.7429595 ], [ 151.3125509, -33.7429459 ], [ 151.312413, -33.742944 ], [ 151.312288200000012, -33.742896 ], [ 151.312233099999986, -33.7428908 ], [ 151.312041599999986, -33.7429114 ], [ 151.3119116, -33.7429117 ], [ 151.3117953, -33.7429285 ], [ 151.3116315, -33.7429563 ], [ 151.3114799, -33.742994 ], [ 151.311320599999988, -33.7430458 ], [ 151.3112185, -33.7430454 ], [ 151.3111309, -33.7430565 ], [ 151.311049200000014, -33.7430798 ], [ 151.3109945, -33.7431031 ], [ 151.310905, -33.743154 ], [ 151.3108181, -33.7431716 ], [ 151.3107056, -33.7432478 ], [ 151.3104495, -33.7433436 ], [ 151.3103342, -33.7433738 ], [ 151.3102343, -33.7434124 ], [ 151.310086, -33.7435076 ], [ 151.3099497, -33.7436016 ], [ 151.3097282, -33.7437543 ], [ 151.308281099999988, -33.7443376 ], [ 151.307774099999989, -33.744755 ], [ 151.307200200000011, -33.7451207 ], [ 151.3062898, -33.7455501 ], [ 151.304893099999987, -33.7461385 ], [ 151.3040671, -33.7465977 ], [ 151.303909750001424, -33.746701507940763 ] ] } }, +{ "type": "Feature", "properties": { "name": "Mona Vale Beach", "id": "way13858412" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.315302302694079, -33.679025430905241 ], [ 151.315085, -33.6790578 ], [ 151.3148766, -33.6791405 ], [ 151.31461680000001, -33.6793396 ], [ 151.3143096, -33.679601 ], [ 151.313970500000011, -33.6800118 ], [ 151.3137869, -33.6804073 ], [ 151.313582599999989, -33.6807755 ], [ 151.313283500000011, -33.6811874 ], [ 151.3130515, -33.6815532 ], [ 151.312657699999988, -33.682039 ], [ 151.3123613, -33.6825522 ], [ 151.3119946, -33.6831229 ], [ 151.3117264, -33.683711 ], [ 151.311340300000012, -33.684353 ], [ 151.3109445, -33.6851054 ], [ 151.310553199999987, -33.6858964 ], [ 151.3103366, -33.6864127 ], [ 151.3101705, -33.6869036 ], [ 151.309983, -33.6875361 ], [ 151.309922418627337, -33.687745437040057 ] ] } }, +{ "type": "Feature", "properties": { "name": "Basin Beach", "id": "way13858415" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.317394501672624, -33.675613133771265 ], [ 151.3172026, -33.6755148 ], [ 151.316830399999986, -33.6756926 ], [ 151.316455100000013, -33.6759088 ], [ 151.3161666, -33.6762358 ], [ 151.316015099999987, -33.6765353 ], [ 151.315949, -33.6767652 ], [ 151.315882499999987, -33.6770441 ], [ 151.3158818, -33.6773135 ], [ 151.3159307, -33.6775414 ], [ 151.3160517, -33.6779355 ], [ 151.3161596, -33.6781238 ], [ 151.3162149, -33.67816 ], [ 151.316386, -33.6781421 ], [ 151.316451600854123, -33.6781421 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bungan Beach", "id": "way13858417" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.321985822200219, -33.664678624401297 ], [ 151.321772900000013, -33.664713 ], [ 151.3211509, -33.6650749 ], [ 151.3206141, -33.6656593 ], [ 151.3196313, -33.6668915 ], [ 151.3188276, -33.6682077 ], [ 151.317990400000014, -33.67033 ], [ 151.317985, -33.6704576 ], [ 151.317984160282123, -33.67054556680943 ] ] } }, +{ "type": "Feature", "properties": { "name": "Turimetta Beach", "id": "way13858421" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.311453846027177, -33.697346201235085 ], [ 151.3113419, -33.697424 ], [ 151.3110825, -33.697536 ], [ 151.3106898, -33.6979197 ], [ 151.3100556, -33.6988397 ], [ 151.3093934, -33.6996846 ], [ 151.309063900000012, -33.7001714 ], [ 151.3088895, -33.7006052 ], [ 151.3089411, -33.7010473 ], [ 151.3089896, -33.7011375 ], [ 151.309033241188843, -33.701242374653269 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Narrabeen Beach", "id": "way14040821" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.307898290307833, -33.703384747178603 ], [ 151.307683200000014, -33.7034011 ], [ 151.307182399999988, -33.7036607 ], [ 151.306337, -33.7046897 ], [ 151.3055592, -33.7057359 ], [ 151.3049045, -33.7068039 ], [ 151.3042668, -33.7080107 ], [ 151.303436, -33.7097023 ], [ 151.302585599999986, -33.7114596 ], [ 151.3018894, -33.7129965 ], [ 151.301829341181787, -33.713125335019981 ] ] } }, +{ "type": "Feature", "properties": { "name": "Narrabeen Beach", "id": "way14040977" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.302009164230412, -33.712732113838364 ], [ 151.3018894, -33.7129965 ], [ 151.3011908, -33.7144951 ], [ 151.3006382, -33.7159827 ], [ 151.3001976, -33.7175955 ], [ 151.29986790000001, -33.7191987 ], [ 151.29973050000001, -33.7208867 ], [ 151.2996925, -33.7225128 ], [ 151.299725553798595, -33.722726148850732 ] ] } }, +{ "type": "Feature", "properties": { "name": "Collaroy Beach", "id": "way14041013" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.29969759274357, -33.722294870780622 ], [ 151.2996925, -33.7225128 ], [ 151.2998797, -33.7237211 ], [ 151.299953, -33.7248892 ], [ 151.2999778, -33.7254384 ], [ 151.3004489, -33.7275145 ], [ 151.3007708, -33.7285691 ], [ 151.301139799999987, -33.7295619 ], [ 151.301791400000013, -33.7311648 ], [ 151.302337099999988, -33.7320394 ], [ 151.3029455, -33.7328168 ], [ 151.303636399999988, -33.7334338 ], [ 151.303930799999989, -33.7335709 ], [ 151.304036700000012, -33.7336183 ], [ 151.304096, -33.7336123 ], [ 151.3042337, -33.7335493 ], [ 151.304238899792836, -33.733542421661326 ] ] } }, +{ "type": "Feature", "properties": { "name": "Newport Beach", "id": "way14041635" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.325984764125707, -33.649481577572089 ], [ 151.325769, -33.6494806 ], [ 151.3253968, -33.6497365 ], [ 151.3249896, -33.6501612 ], [ 151.324713800000012, -33.6506068 ], [ 151.324286300000011, -33.6516762 ], [ 151.3239855, -33.652385 ], [ 151.323743400000012, -33.6530671 ], [ 151.3234396, -33.6540435 ], [ 151.3233869, -33.654605 ], [ 151.3233552, -33.6550129 ], [ 151.3233215, -33.6560057 ], [ 151.323428400000012, -33.6567409 ], [ 151.3235915, -33.65727 ], [ 151.323659, -33.6575417 ], [ 151.3239375, -33.6580708 ], [ 151.3241592, -33.6582527 ], [ 151.3243147, -33.6581656 ], [ 151.3246197, -33.6585412 ], [ 151.3244622, -33.6586233 ], [ 151.3243785, -33.658697 ], [ 151.3243904, -33.6588482 ], [ 151.324388259618331, -33.658912602555475 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cronulla Beach", "id": "way23019739" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.155505907283612, -34.054349035819484 ], [ 151.1553365, -34.0544368 ], [ 151.15525310000001, -34.0546191 ], [ 151.1551241, -34.0548422 ], [ 151.1550691, -34.0550402 ], [ 151.1550786, -34.0552963 ], [ 151.1551393, -34.055609 ], [ 151.1552398, -34.0558102 ], [ 151.1553783, -34.0561417 ], [ 151.1554626, -34.0562728 ], [ 151.155578, -34.0563354 ], [ 151.155645910141004, -34.056414844085602 ] ] } }, +{ "type": "Feature", "properties": { "name": "Garie Beach", "id": "way23140813" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.073566454410098, -34.168430872820501 ], [ 151.073298, -34.168416 ], [ 151.073074, -34.168427 ], [ 151.072902, -34.16841 ], [ 151.072506, -34.168433 ], [ 151.072385, -34.168474 ], [ 151.072281, -34.168487 ], [ 151.072177, -34.168514 ], [ 151.072021, -34.168583 ], [ 151.071986, -34.168583 ], [ 151.071482, -34.168819 ], [ 151.070958, -34.169154 ], [ 151.070853, -34.169253 ], [ 151.070765, -34.169309 ], [ 151.070503, -34.16952 ], [ 151.070258, -34.169688 ], [ 151.070188, -34.169716 ], [ 151.069895, -34.169768 ], [ 151.06986, -34.169797 ], [ 151.069808, -34.16981 ], [ 151.069614, -34.169979 ], [ 151.069176, -34.170331 ], [ 151.068968, -34.170442 ], [ 151.068164, -34.170974 ], [ 151.067955, -34.171071 ], [ 151.067571, -34.171323 ], [ 151.067029, -34.171701 ], [ 151.066643, -34.172011 ], [ 151.066574, -34.172038 ], [ 151.066486, -34.172109 ], [ 151.066347, -34.172178 ], [ 151.0661584, -34.1723293 ], [ 151.0659733, -34.172424 ], [ 151.0658607, -34.1725128 ], [ 151.065729299999987, -34.1726016 ], [ 151.0656032, -34.172677 ], [ 151.0654691, -34.1727858 ], [ 151.0652518, -34.1729367 ], [ 151.0649756, -34.1731586 ], [ 151.0647047, -34.1734471 ], [ 151.0645437, -34.1735824 ], [ 151.0644311, -34.1736246 ], [ 151.064283499999988, -34.1736423 ], [ 151.064276340651247, -34.173645760073747 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Garie Beach", "id": "way23784596" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.063172520607537, -34.174289166499818 ], [ 151.063041700000014, -34.1743125 ], [ 151.062921, -34.1744612 ], [ 151.0628754, -34.174581 ], [ 151.0628352, -34.1746798 ], [ 151.0628352, -34.1747718 ], [ 151.062874, -34.1749125 ], [ 151.0629103, -34.1749716 ], [ 151.0629518, -34.1750437 ], [ 151.062998826851185, -34.175089941055461 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Era Beach", "id": "way23784597" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.058989787866182, -34.17819697843116 ], [ 151.058983, -34.178196 ], [ 151.05869, -34.178177 ], [ 151.0584336, -34.1781692 ], [ 151.0582083, -34.1781914 ], [ 151.0579804, -34.1782135 ], [ 151.057845, -34.178251 ], [ 151.057741, -34.178263 ], [ 151.057465, -34.178316 ], [ 151.057173, -34.1784155 ], [ 151.0569194, -34.178533 ], [ 151.0567627, -34.1786277 ], [ 151.0566071, -34.178715 ], [ 151.056454, -34.178859 ], [ 151.056352299999986, -34.1789991 ], [ 151.056276, -34.179143 ], [ 151.056257, -34.179215 ], [ 151.0562289, -34.1792809 ], [ 151.056208440171929, -34.179338780777613 ] ] } }, +{ "type": "Feature", "properties": { "name": "South Era Beach", "id": "way23785173" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.054728184692351, -34.180354586425331 ], [ 151.054614, -34.180335 ], [ 151.054390899999987, -34.1803987 ], [ 151.054196, -34.180529 ], [ 151.0540321, -34.1807454 ], [ 151.0538149, -34.1811492 ], [ 151.0537478, -34.1812934 ], [ 151.0536003, -34.1815797 ], [ 151.053530599999988, -34.1818171 ], [ 151.0534501, -34.1821233 ], [ 151.0534099, -34.1823829 ], [ 151.0533562, -34.1825826 ], [ 151.053377299467201, -34.182685416947685 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bawley Beach", "id": "way23796933" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.392418878048915, -35.503445610482331 ], [ 150.392247200000014, -35.5035839 ], [ 150.392188, -35.5038028 ], [ 150.392236, -35.503981 ], [ 150.392319, -35.504204 ], [ 150.392456, -35.5044428 ], [ 150.393098, -35.5052228 ], [ 150.393351700000011, -35.5055184 ], [ 150.393838, -35.50577 ], [ 150.39405702555959, -35.505795852197195 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way25005079" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.43555390537972, -33.491307790420599 ], [ 151.435526900000013, -33.4912986 ], [ 151.4353471, -33.4912476 ], [ 151.434830299999987, -33.4910484 ], [ 151.4341408, -33.4909892 ], [ 151.4336859, -33.4910129 ], [ 151.4332913, -33.4910853 ], [ 151.4329751, -33.4911433 ], [ 151.432264300000014, -33.4913389 ], [ 151.4316389, -33.4915938 ], [ 151.4309991, -33.4920265 ], [ 151.4304661, -33.4923822 ], [ 151.4293999, -33.4930638 ], [ 151.4283479, -33.4940182 ], [ 151.4275163, -33.4949251 ], [ 151.4269263, -33.4956423 ], [ 151.426587899999987, -33.4963112 ], [ 151.4260592, -33.4972131 ], [ 151.425767799999988, -33.497871 ], [ 151.4254266, -33.498683 ], [ 151.425192, -33.4994595 ], [ 151.4252205, -33.5002715 ], [ 151.4253728, -33.5006315 ], [ 151.4255135, -33.5008578 ], [ 151.4257728, -33.5010263 ], [ 151.426029824142063, -33.501150172646092 ] ] } }, +{ "type": "Feature", "properties": { "name": "Maitland Bay", "id": "way25396404" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.396058775097288, -33.525705474793924 ], [ 151.3960789, -33.5256918 ], [ 151.396134499999988, -33.5255764 ], [ 151.396135, -33.5254488 ], [ 151.39610780000001, -33.5250381 ], [ 151.3960218, -33.524767 ], [ 151.395911899999987, -33.5245367 ], [ 151.395654400000012, -33.5242505 ], [ 151.3952804, -33.523966 ], [ 151.394949, -33.5237451 ], [ 151.3945914, -33.5235253 ], [ 151.3942999, -33.523403 ], [ 151.393907899999988, -33.5232723 ], [ 151.393418700000012, -33.523122 ], [ 151.392929400000014, -33.5230433 ], [ 151.3925216, -33.5230073 ], [ 151.3919956, -33.5230005 ], [ 151.3915077, -33.5231258 ], [ 151.3910927, -33.5232365 ], [ 151.390834399999989, -33.523365 ], [ 151.390654899999987, -33.5234941 ], [ 151.390661200000011, -33.523607 ], [ 151.390638655769664, -33.523708887396474 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Beach", "id": "way25397185" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.419692760708017, -33.510185354870856 ], [ 151.419484399999988, -33.5101312 ], [ 151.419125400000013, -33.5103119 ], [ 151.4188198, -33.510712 ], [ 151.4187431, -33.5110033 ], [ 151.4187985, -33.511192 ], [ 151.418874977321963, -33.511312625949969 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Marley Beach", "id": "way26491957" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.135918773590248, -34.120217244599822 ], [ 151.135898, -34.120222 ], [ 151.13576, -34.120365 ], [ 151.135752, -34.120395 ], [ 151.135701, -34.120459 ], [ 151.135679, -34.120492 ], [ 151.13564, -34.120561 ], [ 151.135617, -34.120616 ], [ 151.135599, -34.120675 ], [ 151.135586, -34.120734 ], [ 151.135577, -34.120794 ], [ 151.135572, -34.120853 ], [ 151.13557, -34.120903 ], [ 151.135571, -34.120954 ], [ 151.135575, -34.121004 ], [ 151.135587, -34.121104 ], [ 151.135607, -34.121214 ], [ 151.135624, -34.121286 ], [ 151.135664, -34.121434 ], [ 151.135681, -34.121482 ], [ 151.135728, -34.121587 ], [ 151.13576, -34.12164 ], [ 151.135853, -34.121678 ], [ 151.135984090171974, -34.121682605041173 ] ] } }, +{ "type": "Feature", "properties": { "name": "Marley Beach", "id": "way26492096" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.142468849076721, -34.116572890447415 ], [ 151.142469, -34.116572 ], [ 151.142638, -34.116437 ], [ 151.1426265, -34.1164086 ], [ 151.142617, -34.116385 ], [ 151.142587, -34.116354 ], [ 151.142567, -34.116342 ], [ 151.142513, -34.116318 ], [ 151.142337, -34.116277 ], [ 151.142195, -34.116251 ], [ 151.142124, -34.11624 ], [ 151.141956, -34.116219 ], [ 151.141872, -34.116211 ], [ 151.141787, -34.116205 ], [ 151.14154, -34.116197 ], [ 151.141459, -34.116197 ], [ 151.141379, -34.116201 ], [ 151.1413, -34.116211 ], [ 151.141226, -34.116228 ], [ 151.141154, -34.116251 ], [ 151.140874, -34.116361 ], [ 151.140604, -34.11648 ], [ 151.140433, -34.116551 ], [ 151.140378, -34.116576 ], [ 151.140323, -34.116603 ], [ 151.140269, -34.116634 ], [ 151.140216, -34.116666 ], [ 151.14006, -34.116767 ], [ 151.139956, -34.116823 ], [ 151.139923, -34.116844 ], [ 151.139895, -34.116868 ], [ 151.139867, -34.116902 ], [ 151.139805, -34.117066 ], [ 151.139819469477544, -34.117231842473416 ] ] } }, +{ "type": "Feature", "properties": { "name": "Box Beach", "id": "way28553194" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.182855673017059, -32.729882187134002 ], [ 152.1826546, -32.7299535 ], [ 152.1827317, -32.7303191 ], [ 152.182781299999988, -32.7309338 ], [ 152.182977099999988, -32.7318016 ], [ 152.1831199, -32.7327265 ], [ 152.1832977, -32.7329334 ], [ 152.183442010909289, -32.733090551322206 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wreck Beach", "id": "way28566586" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.183625086088369, -32.72494738294035 ], [ 152.183452499999987, -32.7250731 ], [ 152.183359200000012, -32.7262388 ], [ 152.183492199999989, -32.7266988 ], [ 152.183705131368782, -32.726684222545579 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fingal Spit", "id": "way28961609" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.189796711502169, -32.744297152275642 ], [ 152.18994570000001, -32.7441442 ], [ 152.1900157, -32.7439093 ], [ 152.1898737, -32.7435763 ], [ 152.1889725, -32.7428845 ], [ 152.1885039, -32.7426546 ], [ 152.1877989, -32.7423047 ], [ 152.1886327, -32.7425425 ], [ 152.189492, -32.742553 ], [ 152.190535399999987, -32.742363 ], [ 152.1912528, -32.7420958 ], [ 152.191676699999988, -32.741865 ], [ 152.1918153, -32.741744 ], [ 152.1918471, -32.7416102 ], [ 152.1918157, -32.7414333 ], [ 152.191690131075063, -32.74126073226288 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fingal Spit", "id": "way28969439" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.182713897262289, -32.735220895457125 ], [ 152.1826862, -32.7354325 ], [ 152.1826825, -32.7360878 ], [ 152.184012599999988, -32.7388311 ], [ 152.185010299999988, -32.7403319 ], [ 152.1857287, -32.7412647 ], [ 152.1832977, -32.7406645 ], [ 152.181326500000011, -32.7403609 ], [ 152.1807239, -32.740264 ], [ 152.1789655, -32.7402461 ], [ 152.178751812992118, -32.740267946740978 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fingal Beach", "id": "way28969442" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.179178918596165, -32.740248272539169 ], [ 152.1789655, -32.7402461 ], [ 152.1775619, -32.7403896 ], [ 152.1759376, -32.7407783 ], [ 152.174444200000011, -32.741372 ], [ 152.172489399999989, -32.7427515 ], [ 152.170981, -32.744437 ], [ 152.170773, -32.74498 ], [ 152.170703, -32.745338 ], [ 152.170677, -32.746356 ], [ 152.1708112, -32.7473333 ], [ 152.170956100000012, -32.7476578 ], [ 152.171046600000011, -32.7478605 ], [ 152.1715294, -32.7484159 ], [ 152.1720867, -32.7488531 ], [ 152.172262993321937, -32.748732681667661 ] ] } }, +{ "type": "Feature", "properties": { "name": "Zenith Beach", "id": "way28969470" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.185836332324186, -32.718501357914896 ], [ 152.1856374, -32.7185783 ], [ 152.1850602, -32.7194805 ], [ 152.1846861, -32.7204315 ], [ 152.1845017, -32.7210618 ], [ 152.1842821, -32.7215742 ], [ 152.1843876, -32.7217245 ], [ 152.18449720000001, -32.721884 ], [ 152.184507145195937, -32.721901155462966 ] ] } }, +{ "type": "Feature", "properties": { "name": "Coogee Beach", "id": "way29388919" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.260050978071661, -33.919830628130832 ], [ 151.2598619, -33.9197257 ], [ 151.2595943, -33.9197004 ], [ 151.2591732, -33.919935 ], [ 151.2588149, -33.9202411 ], [ 151.258534700000013, -33.9205309 ], [ 151.258128199999987, -33.9210885 ], [ 151.2580213, -33.9214039 ], [ 151.257997499999988, -33.9216426 ], [ 151.2579151, -33.9219677 ], [ 151.257931899999988, -33.9223229 ], [ 151.2579591, -33.9226612 ], [ 151.257968799999986, -33.9227711 ], [ 151.258033399999988, -33.9229197 ], [ 151.258061671302215, -33.922966404316192 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way30177157" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.149000281715814, -26.792268536735424 ], [ 153.14895, -26.7923359 ], [ 153.148829799999987, -26.7925044 ], [ 153.1486416, -26.792629 ], [ 153.1485611, -26.7927032 ], [ 153.1485128, -26.7927583 ], [ 153.148491400000012, -26.7928397 ], [ 153.1484565, -26.7930288 ], [ 153.1484431, -26.7931772 ], [ 153.1485075, -26.7933855 ], [ 153.1485826, -26.793601 ], [ 153.1486523, -26.7937806 ], [ 153.148673800000012, -26.7939458 ], [ 153.1486577, -26.7940871 ], [ 153.1486362, -26.7942259 ], [ 153.1486389, -26.7944222 ], [ 153.1486014, -26.7946449 ], [ 153.148558400000013, -26.7948388 ], [ 153.148539699999986, -26.7951812 ], [ 153.148531600000013, -26.7955188 ], [ 153.148539699999986, -26.7958205 ], [ 153.148580900000013, -26.796113 ], [ 153.1486152, -26.7963658 ], [ 153.1487113, -26.7967518 ], [ 153.148754200000013, -26.7969242 ], [ 153.1488641, -26.7972163 ], [ 153.14892420000001, -26.7973848 ], [ 153.1489929, -26.797538 ], [ 153.1490787, -26.7976989 ], [ 153.149189, -26.7978399 ], [ 153.149322399999988, -26.7979974 ], [ 153.149496199999987, -26.7981879 ], [ 153.1496689, -26.7984277 ], [ 153.1497359, -26.7985235 ], [ 153.1497708, -26.7985809 ], [ 153.149885500000011, -26.7986872 ], [ 153.1500605, -26.7989137 ], [ 153.150081542953984, -26.798933881322569 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way30978355" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.364898941539792, -27.145118302858382 ], [ 153.36489, -27.14511 ], [ 153.36475, -27.14498 ], [ 153.36446, -27.14421 ], [ 153.36446, -27.14396 ], [ 153.36445, -27.1437 ], [ 153.36417, -27.14319 ], [ 153.36388, -27.14267 ], [ 153.36359, -27.14191 ], [ 153.3633, -27.14139 ], [ 153.36301, -27.14036 ], [ 153.36272, -27.13984 ], [ 153.36243, -27.13933 ], [ 153.36243, -27.13907 ], [ 153.36243, -27.13882 ], [ 153.36214, -27.1383 ], [ 153.36185, -27.13779 ], [ 153.36185, -27.13754 ], [ 153.36184, -27.13702 ], [ 153.36184, -27.13599 ], [ 153.36212, -27.13444 ], [ 153.36241, -27.1329 ], [ 153.36268, -27.13212 ], [ 153.36297, -27.13135 ], [ 153.36326, -27.13084 ], [ 153.36355, -27.12981 ], [ 153.36383, -27.12903 ], [ 153.36397, -27.12826 ], [ 153.36469, -27.12672 ], [ 153.36497, -27.12646 ], [ 153.36526, -27.12517 ], [ 153.36554, -27.12413 ], [ 153.36583, -27.12363 ], [ 153.36611, -27.12208 ], [ 153.3664, -27.12182 ], [ 153.3664795, -27.1214496 ], [ 153.36668, -27.12054 ], [ 153.36697, -27.12002 ], [ 153.36725, -27.11899 ], [ 153.36753, -27.11745 ], [ 153.36782, -27.11641 ], [ 153.3681, -27.1159 ], [ 153.36839, -27.11436 ], [ 153.36867, -27.11333 ], [ 153.36896, -27.11281 ], [ 153.36923, -27.11127 ], [ 153.36952, -27.10946 ], [ 153.3698, -27.10792 ], [ 153.3698, -27.10766 ], [ 153.3698, -27.10638 ], [ 153.37007, -27.10329 ], [ 153.37007, -27.10303 ], [ 153.37007, -27.10174 ], [ 153.37007, -27.10097 ], [ 153.37006, -27.1002 ], [ 153.37006, -27.09994 ], [ 153.36977, -27.09865 ], [ 153.36977, -27.0984 ], [ 153.36977, -27.09737 ], [ 153.36977, -27.09686 ], [ 153.36976, -27.09608 ], [ 153.36976, -27.0953 ], [ 153.36976, -27.09505 ], [ 153.36947, -27.09428 ], [ 153.36947, -27.09377 ], [ 153.36946, -27.09248 ], [ 153.36946, -27.09222 ], [ 153.36945, -27.08939 ], [ 153.36945, -27.08914 ], [ 153.36945, -27.08862 ], [ 153.36916, -27.08811 ], [ 153.36887, -27.08758 ], [ 153.36887, -27.08734 ], [ 153.36887, -27.08682 ], [ 153.36858, -27.08605 ], [ 153.36858, -27.08579 ], [ 153.36858, -27.08528 ], [ 153.36843, -27.08515 ], [ 153.36829, -27.08502 ], [ 153.36829, -27.08425 ], [ 153.36829, -27.08399 ], [ 153.36799, -27.08168 ], [ 153.36799, -27.08091 ], [ 153.36799, -27.08065 ], [ 153.3677, -27.07988 ], [ 153.3677, -27.07936 ], [ 153.36769, -27.07911 ], [ 153.3674, -27.07834 ], [ 153.36711, -27.07705 ], [ 153.36682, -27.07576 ], [ 153.366753499999987, -27.0755833 ], [ 153.366724, -27.0753528 ], [ 153.366725300000013, -27.0751319 ], [ 153.366745400000013, -27.0749635 ], [ 153.3668093, -27.0748202 ], [ 153.36682, -27.07396 ], [ 153.36664, -27.0733592 ], [ 153.3660251, -27.0720477 ], [ 153.3640069, -27.06814 ], [ 153.3634784, -27.0667075 ], [ 153.36276, -27.06471 ], [ 153.3625069, -27.0641252 ], [ 153.362411711841503, -27.063947286528084 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way30978532" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.440410401744373, -27.112725157056772 ], [ 153.44026, -27.11286 ], [ 153.43985, -27.11621 ], [ 153.43927, -27.11621 ], [ 153.43912, -27.11775 ], [ 153.43856, -27.1193 ], [ 153.43828, -27.12085 ], [ 153.43786, -27.12238 ], [ 153.43728, -27.12238 ], [ 153.43714, -27.12368 ], [ 153.43686, -27.12394 ], [ 153.43658, -27.12548 ], [ 153.43629, -27.12573 ], [ 153.43544, -27.13012 ], [ 153.43516, -27.13063 ], [ 153.43487, -27.13166 ], [ 153.43459, -27.13321 ], [ 153.43431, -27.13475 ], [ 153.43404, -27.13578 ], [ 153.43375, -27.1363 ], [ 153.43346, -27.13784 ], [ 153.43317, -27.1381 ], [ 153.43261, -27.14093 ], [ 153.43204, -27.14249 ], [ 153.43176, -27.14402 ], [ 153.43162, -27.14557 ], [ 153.43105, -27.14557 ], [ 153.43091, -27.14711 ], [ 153.430808, -27.1476744 ], [ 153.43063, -27.14866 ], [ 153.43049, -27.15021 ], [ 153.42991, -27.15021 ], [ 153.42977, -27.15175 ], [ 153.42949, -27.15329 ], [ 153.42921, -27.15381 ], [ 153.42892, -27.15484 ], [ 153.42864, -27.15638 ], [ 153.42864, -27.15741 ], [ 153.42836, -27.15793 ], [ 153.42808, -27.15947 ], [ 153.42794, -27.16102 ], [ 153.42737, -27.16102 ], [ 153.42723, -27.16256 ], [ 153.42695, -27.16411 ], [ 153.42695, -27.16591 ], [ 153.42638, -27.16745 ], [ 153.4261, -27.169 ], [ 153.42582, -27.1703 ], [ 153.42553, -27.17054 ], [ 153.42525, -27.17209 ], [ 153.42497, -27.17363 ], [ 153.42497, -27.17492 ], [ 153.42469, -27.17672 ], [ 153.42412, -27.17827 ], [ 153.42414, -27.17955 ], [ 153.42385, -27.18137 ], [ 153.42356, -27.1829 ], [ 153.42357, -27.18444 ], [ 153.423, -27.18599 ], [ 153.42301, -27.18779 ], [ 153.42244, -27.18934 ], [ 153.42159, -27.19397 ], [ 153.4216, -27.19551 ], [ 153.42132, -27.19706 ], [ 153.42103, -27.1986 ], [ 153.42104, -27.20015 ], [ 153.42075, -27.20041 ], [ 153.42076, -27.20169 ], [ 153.42048, -27.20324 ], [ 153.42019, -27.20478 ], [ 153.42021, -27.20658 ], [ 153.41992, -27.20813 ], [ 153.41992, -27.20916 ], [ 153.41964, -27.20967 ], [ 153.41935, -27.21122 ], [ 153.41937, -27.2143 ], [ 153.41908, -27.21585 ], [ 153.4188, -27.21739 ], [ 153.41881, -27.21894 ], [ 153.4185392, -27.2203237 ], [ 153.41853, -27.22048 ], [ 153.41853, -27.22227 ], [ 153.41854, -27.22383 ], [ 153.41826, -27.22537 ], [ 153.41797, -27.22717 ], [ 153.41799, -27.23181 ], [ 153.41828, -27.23309 ], [ 153.418, -27.23489 ], [ 153.41801, -27.23566 ], [ 153.41772, -27.23644 ], [ 153.41772, -27.24005 ], [ 153.41803, -27.24235 ], [ 153.41808, -27.25651 ], [ 153.4181, -27.26062 ], [ 153.41839, -27.26242 ], [ 153.4184, -27.26345 ], [ 153.41869, -27.26448 ], [ 153.41869, -27.26525 ], [ 153.41898, -27.26602 ], [ 153.41899, -27.2668 ], [ 153.41928, -27.26782 ], [ 153.41958, -27.27245 ], [ 153.41959, -27.27477 ], [ 153.42018, -27.27683 ], [ 153.42018, -27.27786 ], [ 153.42047, -27.27914 ], [ 153.42047, -27.27966 ], [ 153.42076, -27.28017 ], [ 153.42077, -27.2812 ], [ 153.42106, -27.28197 ], [ 153.42135, -27.28326 ], [ 153.42165, -27.28506 ], [ 153.421889, -27.2863038 ], [ 153.421956599999987, -27.2869645 ], [ 153.4222878, -27.2884121 ], [ 153.4226054, -27.2899437 ], [ 153.42283, -27.29072 ], [ 153.423038, -27.2916796 ], [ 153.423220500000014, -27.2925986 ], [ 153.4233827, -27.2935175 ], [ 153.4238626, -27.2947008 ], [ 153.4239369, -27.2954035 ], [ 153.4239775, -27.2959861 ], [ 153.4241802, -27.2964546 ], [ 153.4246804, -27.2980882 ], [ 153.424720900000011, -27.2987729 ], [ 153.4250251, -27.299806 ], [ 153.42535620000001, -27.3007429 ], [ 153.4256063, -27.3014516 ], [ 153.425971299999986, -27.3023044 ], [ 153.4261673, -27.3031212 ], [ 153.42662, -27.3046 ], [ 153.4271608, -27.3056796 ], [ 153.427694800000012, -27.3067786 ], [ 153.4281814, -27.3077275 ], [ 153.428431499999988, -27.30825 ], [ 153.4285802, -27.3087244 ], [ 153.4289249, -27.3095412 ], [ 153.4293371, -27.310454 ], [ 153.429641299999986, -27.3109764 ], [ 153.4299657, -27.311643 ], [ 153.4302293, -27.3123096 ], [ 153.4315202, -27.3156545 ], [ 153.4319257, -27.3164051 ], [ 153.4321826, -27.3169276 ], [ 153.432446199999987, -27.317444 ], [ 153.432743499999987, -27.3179244 ], [ 153.432973299999986, -27.3184889 ], [ 153.4332978, -27.3191494 ], [ 153.433777600000013, -27.319906 ], [ 153.4343183, -27.3206566 ], [ 153.4351361, -27.3216594 ], [ 153.4362716, -27.3225121 ], [ 153.4369948, -27.3228784 ], [ 153.437907200000012, -27.3232147 ], [ 153.4386169, -27.3234729 ], [ 153.439164299999987, -27.3239352 ], [ 153.4394955, -27.3243916 ], [ 153.4398808, -27.3248839 ], [ 153.4401106, -27.3252983 ], [ 153.440228106262026, -27.325462386439906 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way30978533" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.465315791386644, -27.038771910887498 ], [ 153.46512, -27.03882 ], [ 153.46469, -27.03919 ], [ 153.46441, -27.04022 ], [ 153.46412, -27.04048 ], [ 153.46384, -27.04177 ], [ 153.46355, -27.04229 ], [ 153.4631836, -27.0431167 ], [ 153.4629476, -27.043518 ], [ 153.4626686, -27.0445501 ], [ 153.4624326, -27.045047 ], [ 153.46213, -27.04615 ], [ 153.46185, -27.04641 ], [ 153.46156, -27.04744 ], [ 153.46128, -27.04795 ], [ 153.46099, -27.04924 ], [ 153.46071, -27.0495 ], [ 153.46043, -27.05079 ], [ 153.46014, -27.05105 ], [ 153.45986, -27.05208 ], [ 153.45872, -27.05414 ], [ 153.45843, -27.05542 ], [ 153.45815, -27.05568 ], [ 153.45815, -27.0562 ], [ 153.45815, -27.05645 ], [ 153.45787, -27.05723 ], [ 153.45758, -27.05852 ], [ 153.4573, -27.05877 ], [ 153.45702, -27.06032 ], [ 153.45673, -27.06058 ], [ 153.45645, -27.06161 ], [ 153.45616, -27.06186 ], [ 153.45588, -27.0629 ], [ 153.45559, -27.06341 ], [ 153.45545, -27.06495 ], [ 153.45488, -27.06496 ], [ 153.45474, -27.0665 ], [ 153.4528358, -27.0716842 ], [ 153.45247, -27.07268 ], [ 153.452377899999988, -27.0736996 ], [ 153.45233, -27.07423 ], [ 153.45176, -27.07423 ], [ 153.45162, -27.07526 ], [ 153.45133, -27.07578 ], [ 153.45105, -27.07706 ], [ 153.45076, -27.07732 ], [ 153.44992, -27.08144 ], [ 153.44963, -27.08196 ], [ 153.44935, -27.08324 ], [ 153.44906, -27.0835 ], [ 153.44821, -27.08556 ], [ 153.44792, -27.08659 ], [ 153.44764, -27.08814 ], [ 153.44736, -27.08865 ], [ 153.44707, -27.08968 ], [ 153.44679, -27.09097 ], [ 153.44622, -27.09277 ], [ 153.44594, -27.09432 ], [ 153.44566, -27.09457 ], [ 153.44537, -27.09586 ], [ 153.4448, -27.09638 ], [ 153.44451, -27.09741 ], [ 153.44422, -27.09844 ], [ 153.44395, -27.09896 ], [ 153.44282, -27.10488 ], [ 153.44253, -27.10514 ], [ 153.44197, -27.10668 ], [ 153.44183, -27.10823 ], [ 153.4415328, -27.1087267 ], [ 153.44112, -27.10977 ], [ 153.44055, -27.1126 ], [ 153.44026, -27.11286 ], [ 153.440235425421406, -27.113060792288572 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way30978695" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.368936415696567, -27.052922789011408 ], [ 153.3690226, -27.0527146 ], [ 153.3698004, -27.0519741 ], [ 153.3710021, -27.0508466 ], [ 153.3729869, -27.0493655 ], [ 153.375379400000014, -27.0480182 ], [ 153.3791957, -27.0460321 ], [ 153.3807596, -27.0453013 ], [ 153.38152, -27.04498 ], [ 153.3853193, -27.0433798 ], [ 153.3872734, -27.0425994 ], [ 153.389927699999987, -27.0414487 ], [ 153.3917176, -27.040359 ], [ 153.392941, -27.0393771 ], [ 153.3945192, -27.0384601 ], [ 153.3962522, -27.0379191 ], [ 153.3972994, -27.0377304 ], [ 153.3981694, -27.0373848 ], [ 153.399030399999987, -27.0371575 ], [ 153.3999162, -27.0370094 ], [ 153.4034886, -27.0354419 ], [ 153.4049769, -27.0350592 ], [ 153.4071878, -27.0346112 ], [ 153.4102106, -27.0342074 ], [ 153.413474900000011, -27.0339136 ], [ 153.4161597, -27.0336603 ], [ 153.41826, -27.03278 ], [ 153.41855, -27.03278 ], [ 153.42027, -27.03303 ], [ 153.42228, -27.03302 ], [ 153.42314, -27.03276 ], [ 153.42574, -27.03276 ], [ 153.42745, -27.03301 ], [ 153.42947, -27.033 ], [ 153.43061, -27.03274 ], [ 153.4332, -27.03273 ], [ 153.43406, -27.03247 ], [ 153.43521, -27.03221 ], [ 153.43666, -27.03221 ], [ 153.4373818, -27.0319644 ], [ 153.4399326, -27.0306459 ], [ 153.441625, -27.0295044 ], [ 153.4436469, -27.0284645 ], [ 153.44496, -27.02806 ], [ 153.4456729, -27.0275074 ], [ 153.44912, -27.02586 ], [ 153.44897, -27.02535 ], [ 153.44926, -27.02522 ], [ 153.44983, -27.02496 ], [ 153.45041, -27.0247 ], [ 153.45069, -27.02444 ], [ 153.45098, -27.02444 ], [ 153.45127, -27.02444 ], [ 153.45156, -27.02418 ], [ 153.45184, -27.02393 ], [ 153.45241, -27.02366 ], [ 153.4527, -27.02341 ], [ 153.45328, -27.02328 ], [ 153.45342, -27.02302 ], [ 153.4537, -27.02225 ], [ 153.453833080783681, -27.022098704707069 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way31000898" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.54297828538003, -27.437203863624354 ], [ 153.542878699999989, -27.4371205 ], [ 153.54205, -27.43799 ], [ 153.541715900000014, -27.4385124 ], [ 153.5377249, -27.4447518 ], [ 153.5363184, -27.4470612 ], [ 153.53518, -27.44856 ], [ 153.53432140000001, -27.4499588 ], [ 153.533827, -27.4508396 ], [ 153.53317, -27.45166 ], [ 153.53303, -27.45217 ], [ 153.53218, -27.45346 ], [ 153.530894600000011, -27.4557829 ], [ 153.528563600000012, -27.4599008 ], [ 153.5282255, -27.4613957 ], [ 153.5274648, -27.4625258 ], [ 153.5264723, -27.4651076 ], [ 153.5247253, -27.468275 ], [ 153.52403, -27.46995 ], [ 153.52361, -27.47176 ], [ 153.52289, -27.47305 ], [ 153.52232, -27.4746 ], [ 153.52218, -27.47564 ], [ 153.521398, -27.4768089 ], [ 153.5210366, -27.4780734 ], [ 153.52032, -27.47924 ], [ 153.519063, -27.4829033 ], [ 153.5187127, -27.48432 ], [ 153.5170899, -27.4868275 ], [ 153.5156838, -27.4905571 ], [ 153.514018099999987, -27.4944062 ], [ 153.512373200000013, -27.4982968 ], [ 153.5083381, -27.5085937 ], [ 153.507857199999989, -27.5101763 ], [ 153.507403900000014, -27.5109977 ], [ 153.507123900000011, -27.5121758 ], [ 153.5055027, -27.5158445 ], [ 153.5035345, -27.5205878 ], [ 153.5022788, -27.5235796 ], [ 153.5003376, -27.5292047 ], [ 153.4988988, -27.533088 ], [ 153.4971606, -27.5373723 ], [ 153.4969587, -27.538347 ], [ 153.49627, -27.5394505 ], [ 153.495992699999988, -27.5407877 ], [ 153.4945908, -27.5440036 ], [ 153.4938096, -27.5464401 ], [ 153.492865599999988, -27.5484234 ], [ 153.492403, -27.5506613 ], [ 153.4912644, -27.5527145 ], [ 153.4904747, -27.5554865 ], [ 153.4889255, -27.559972 ], [ 153.4885026, -27.5611151 ], [ 153.4878493, -27.5621036 ], [ 153.4877354, -27.563288 ], [ 153.4874565, -27.5642639 ], [ 153.4868746, -27.5652019 ], [ 153.486620499999987, -27.566186 ], [ 153.486057100000011, -27.5668466 ], [ 153.48596, -27.5689 ], [ 153.48567, -27.56993 ], [ 153.48553, -27.57006 ], [ 153.48538, -27.57019 ], [ 153.4851, -27.57148 ], [ 153.48496, -27.5716 ], [ 153.48481, -27.57173 ], [ 153.4846972, -27.5725341 ], [ 153.4841, -27.57302 ], [ 153.4838512, -27.5740876 ], [ 153.48353, -27.57457 ], [ 153.4833979, -27.5756216 ], [ 153.48295, -27.57611 ], [ 153.48282, -27.5774 ], [ 153.48266, -27.57753 ], [ 153.482745099999988, -27.5777224 ], [ 153.482574, -27.578535 ], [ 153.4824495, -27.5793462 ], [ 153.4822011, -27.5799828 ], [ 153.4821083, -27.5807265 ], [ 153.48202520000001, -27.5811744 ], [ 153.4817462, -27.5819352 ], [ 153.481552599999986, -27.582451 ], [ 153.481517700000012, -27.5828852 ], [ 153.4811384, -27.583887 ], [ 153.4806417, -27.5847319 ], [ 153.48025, -27.58539 ], [ 153.479773200000011, -27.5861368 ], [ 153.479723799999988, -27.5865362 ], [ 153.47968, -27.58693 ], [ 153.4794, -27.58849 ], [ 153.4794192, -27.5889449 ], [ 153.479399300000011, -27.5892972 ], [ 153.4795286, -27.5897726 ], [ 153.4791509, -27.5904373 ], [ 153.478886499999987, -27.5909465 ], [ 153.47869, -27.59157 ], [ 153.47811, -27.59157 ], [ 153.47812, -27.59311 ], [ 153.47754, -27.59311 ], [ 153.47741, -27.59466 ], [ 153.47712, -27.59569 ], [ 153.47683, -27.59619 ], [ 153.47656, -27.59775 ], [ 153.4764, -27.59788 ], [ 153.47625, -27.59801 ], [ 153.47613, -27.59929 ], [ 153.47555, -27.5993 ], [ 153.47541, -27.60084 ], [ 153.47513, -27.60238 ], [ 153.47485, -27.60367 ], [ 153.4747, -27.6038 ], [ 153.47456, -27.60393 ], [ 153.47427, -27.60522 ], [ 153.47413, -27.60535 ], [ 153.47399, -27.60548 ], [ 153.4737, -27.60702 ], [ 153.47356, -27.60715 ], [ 153.47342, -27.60728 ], [ 153.47313, -27.60857 ], [ 153.47285, -27.61011 ], [ 153.47257, -27.61191 ], [ 153.47243, -27.61346 ], [ 153.4721289, -27.6140992 ], [ 153.47172, -27.615 ], [ 153.47143, -27.61603 ], [ 153.47115, -27.61655 ], [ 153.47086, -27.61809 ], [ 153.47059, -27.61887 ], [ 153.47028, -27.61965 ], [ 153.4703, -27.62093 ], [ 153.4703, -27.62118 ], [ 153.47001, -27.6217 ], [ 153.46973, -27.62273 ], [ 153.46945, -27.62427 ], [ 153.46916, -27.62582 ], [ 153.46902, -27.62595 ], [ 153.46888, -27.62608 ], [ 153.46859, -27.62735 ], [ 153.46846, -27.62891 ], [ 153.4683422, -27.6298321 ], [ 153.4680257, -27.6310811 ], [ 153.4676126, -27.6321994 ], [ 153.46717, -27.63354 ], [ 153.46689, -27.63483 ], [ 153.46675, -27.63496 ], [ 153.4666, -27.63509 ], [ 153.46632, -27.63663 ], [ 153.46604, -27.63818 ], [ 153.46576, -27.63972 ], [ 153.46547, -27.64127 ], [ 153.46533, -27.64281 ], [ 153.465037700000011, -27.643595 ], [ 153.46462, -27.64436 ], [ 153.46434, -27.6459 ], [ 153.464355899999987, -27.6469903 ], [ 153.4639927, -27.6477706 ], [ 153.4640528, -27.6487941 ], [ 153.463733100000013, -27.6493852 ], [ 153.46349, -27.65002 ], [ 153.4633232, -27.650606 ], [ 153.4632, -27.65131 ], [ 153.46292, -27.65234 ], [ 153.46264, -27.65388 ], [ 153.46235, -27.65516 ], [ 153.4622702, -27.655399 ], [ 153.4621886, -27.6556674 ], [ 153.46207, -27.65594 ], [ 153.46207, -27.65697 ], [ 153.46179, -27.65826 ], [ 153.46165, -27.65839 ], [ 153.4615, -27.65851 ], [ 153.4615, -27.65878 ], [ 153.4612424, -27.6594002 ], [ 153.4611597, -27.6604289 ], [ 153.4616479, -27.6614613 ], [ 153.461063700000011, -27.6632507 ], [ 153.46038, -27.66623 ], [ 153.46009, -27.66779 ], [ 153.45996, -27.66791 ], [ 153.4599265, -27.6686812 ], [ 153.459723200000013, -27.66939 ], [ 153.459341200000011, -27.6708029 ], [ 153.459256735931376, -27.672059766091358 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bar Beach", "id": "way33038007" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.769373639445547, -32.941590897101136 ], [ 151.7692318, -32.9414267 ], [ 151.7690279, -32.9413882 ], [ 151.7679492, -32.9417314 ], [ 151.766714799999988, -32.9423984 ], [ 151.7656729, -32.9430839 ], [ 151.765524228438011, -32.943249684051153 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way34458501" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.173788398778669, -33.947743362148209 ], [ 151.173766, -33.9476833 ], [ 151.1736958, -33.9475477 ], [ 151.173320499999988, -33.9474526 ], [ 151.1729214, -33.9473852 ], [ 151.172453600000011, -33.9473588 ], [ 151.1718204, -33.9473623 ], [ 151.171219799999989, -33.9473677 ], [ 151.1707858, -33.9473839 ], [ 151.1703283, -33.9474473 ], [ 151.170159344007686, -33.947582477492546 ] ] } }, +{ "type": "Feature", "properties": { "name": "Werri Beach", "id": "way37890458" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.841419536399457, -34.728885378744927 ], [ 150.841025, -34.7289391 ], [ 150.83994, -34.7290296 ], [ 150.839566100000013, -34.7289966 ], [ 150.839243399999987, -34.7292067 ], [ 150.8389349, -34.7294872 ], [ 150.8386103, -34.7299146 ], [ 150.8373689, -34.7315812 ], [ 150.8370545, -34.7320003 ], [ 150.8364028, -34.7329166 ], [ 150.835481, -34.734389 ], [ 150.835239, -34.73469 ], [ 150.834494, -34.736123 ], [ 150.834234, -34.736481 ], [ 150.8334491, -34.7382298 ], [ 150.833109, -34.73916 ], [ 150.832875, -34.7409562 ], [ 150.832954, -34.741867 ], [ 150.833231, -34.74244 ], [ 150.8335543, -34.7431596 ], [ 150.834203, -34.743886 ], [ 150.8345672, -34.744136 ], [ 150.834754095183229, -34.744248924422486 ] ] } }, +{ "type": "Feature", "properties": { "name": "Murramarang Beach", "id": "way38144058" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.401419529768276, -35.518618999126488 ], [ 150.401277, -35.518561 ], [ 150.401204, -35.518574 ], [ 150.401112, -35.518631 ], [ 150.400936, -35.5190551 ], [ 150.400929, -35.5192761 ], [ 150.400944, -35.5199391 ], [ 150.401075100000014, -35.5202241 ], [ 150.401261, -35.5206281 ], [ 150.401744, -35.5218621 ], [ 150.401985, -35.5222211 ], [ 150.402173, -35.5225341 ], [ 150.402398, -35.5228191 ], [ 150.40255, -35.5231461 ], [ 150.402667, -35.5234441 ], [ 150.402889, -35.5238321 ], [ 150.403424, -35.5245652 ], [ 150.40432, -35.5258671 ], [ 150.404468, -35.5259951 ], [ 150.404611, -35.5260421 ], [ 150.404827, -35.5260321 ], [ 150.405079, -35.526052 ], [ 150.405382, -35.526147 ], [ 150.405557390838567, -35.5262802785264 ] ] } }, +{ "type": "Feature", "properties": { "name": "Gannet Beach", "id": "way38144150" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.399870295636418, -35.513978425065716 ], [ 150.399779, -35.5139798 ], [ 150.399656, -35.514031 ], [ 150.3995299, -35.514014 ], [ 150.39933, -35.514068 ], [ 150.3991819, -35.514183 ], [ 150.3989569, -35.514444 ], [ 150.398784, -35.514779 ], [ 150.398603900000012, -35.51532 ], [ 150.398595, -35.515629 ], [ 150.398621, -35.515939 ], [ 150.398718, -35.516281 ], [ 150.398906899999986, -35.516579 ], [ 150.3991159, -35.51679 ], [ 150.3992929, -35.516883 ], [ 150.3994719, -35.516945 ], [ 150.399652, -35.516935 ], [ 150.3998077, -35.5168431 ], [ 150.39999149938626, -35.516721101517604 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way38145816" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.58790043664311, -35.188494346590844 ], [ 150.587697600000013, -35.1883968 ], [ 150.587021, -35.188398 ], [ 150.586356, -35.188709 ], [ 150.585362, -35.188846 ], [ 150.583878, -35.189267 ], [ 150.583564, -35.189336 ], [ 150.582673, -35.189689 ], [ 150.580299, -35.190333 ], [ 150.579792, -35.190544 ], [ 150.577819, -35.191076 ], [ 150.576648, -35.191541 ], [ 150.574604, -35.192287 ], [ 150.573065, -35.192922 ], [ 150.570878, -35.194082 ], [ 150.570073, -35.194464 ], [ 150.569691, -35.1946657 ], [ 150.569427600000012, -35.1948539 ], [ 150.5689698, -35.1951197 ], [ 150.56780280000001, -35.1957683 ], [ 150.5666057, -35.1965416 ], [ 150.563802, -35.198375 ], [ 150.562117, -35.199782 ], [ 150.561185, -35.200763 ], [ 150.5609878, -35.2011001 ], [ 150.561134891963064, -35.201323692092842 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way39373324" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.170468446378635, -34.079514300682042 ], [ 151.170448, -34.079514 ], [ 151.170524, -34.079618 ], [ 151.170503, -34.079666 ], [ 151.170246, -34.079587 ], [ 151.1703987, -34.0797327 ], [ 151.170544299999989, -34.0800562 ], [ 151.170592727483381, -34.080087039799388 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bulgo Beach", "id": "way40581295" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.012633969624687, -34.212978032661347 ], [ 151.012407700000011, -34.2131007 ], [ 151.0122504, -34.2132035 ], [ 151.012133299999988, -34.2133549 ], [ 151.0119641, -34.2137297 ], [ 151.0119362, -34.2138073 ], [ 151.011966699999988, -34.2138978 ], [ 151.011912099999989, -34.2139404 ], [ 151.011896, -34.2140535 ], [ 151.011841, -34.2141777 ], [ 151.011857099999986, -34.2143973 ], [ 151.0119397, -34.2148214 ], [ 151.0120757, -34.2148719 ], [ 151.012122884572307, -34.214937835843912 ] ] } }, +{ "type": "Feature", "properties": { "name": "Burning Palms Beach", "id": "way40800824" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.045992646595778, -34.186238947689709 ], [ 151.0457908, -34.1861282 ], [ 151.045566, -34.186112 ], [ 151.0454215, -34.1861463 ], [ 151.0452654, -34.1861813 ], [ 151.0450799, -34.1862516 ], [ 151.044933, -34.1863349 ], [ 151.0446531, -34.1865132 ], [ 151.0444728, -34.1866608 ], [ 151.0443292, -34.1867672 ], [ 151.0442884, -34.1867975 ], [ 151.0437566, -34.1871289 ], [ 151.0435259, -34.1872798 ], [ 151.0433758, -34.1873908 ], [ 151.0432979, -34.1874484 ], [ 151.043126300000011, -34.1875727 ], [ 151.0430351, -34.1876636 ], [ 151.0429519, -34.1877502 ], [ 151.0427293, -34.1878966 ], [ 151.0425469, -34.1880408 ], [ 151.042507300000011, -34.1880893 ], [ 151.0424021, -34.1882183 ], [ 151.042410100000012, -34.1883581 ], [ 151.042410100000012, -34.1884712 ], [ 151.042423500000012, -34.1885201 ], [ 151.0423726, -34.1885755 ], [ 151.042335, -34.1886354 ], [ 151.0423243, -34.1887242 ], [ 151.042302799999987, -34.1888218 ], [ 151.042286911115582, -34.188846974596082 ] ] } }, +{ "type": "Feature", "properties": { "name": "Werrong Beach", "id": "way40837909" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.021789548382912, -34.203557419553619 ], [ 151.021726, -34.203589 ], [ 151.0216082, -34.2036766 ], [ 151.021497399999987, -34.2037409 ], [ 151.0214207, -34.203768 ], [ 151.0213636, -34.2037881 ], [ 151.021231199999988, -34.2038508 ], [ 151.0210909, -34.2039437 ], [ 151.0207663, -34.2041959 ], [ 151.02047970000001, -34.2044172 ], [ 151.0202315, -34.204656 ], [ 151.02003830000001, -34.2049222 ], [ 151.019939851152685, -34.205115635757132 ] ] } }, +{ "type": "Feature", "properties": { "name": "Curl Curl Beach", "id": "way41740993" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.300856828916864, -33.767042008175359 ], [ 151.300667299999986, -33.7669385 ], [ 151.299484400000011, -33.7670693 ], [ 151.2989728, -33.7672106 ], [ 151.298446, -33.7673561 ], [ 151.2979843, -33.7677333 ], [ 151.2971253, -33.7684762 ], [ 151.296545400000014, -33.7691209 ], [ 151.2961009, -33.7696187 ], [ 151.295325600000012, -33.7706255 ], [ 151.2945603, -33.7715231 ], [ 151.2938148, -33.7725464 ], [ 151.2931994, -33.7736871 ], [ 151.2931056, -33.7741732 ], [ 151.2932371, -33.7743009 ], [ 151.293295199999989, -33.7742228 ], [ 151.293453772101685, -33.77432071798615 ] ] } }, +{ "type": "Feature", "properties": { "name": "Currumbin", "id": "way45176479" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.486620033145499, -28.125919116151064 ], [ 153.4865656, -28.1261465 ], [ 153.4866704, -28.126356 ], [ 153.4867729, -28.1265697 ], [ 153.4870223, -28.1269209 ], [ 153.4872861, -28.1272864 ], [ 153.4874654, -28.1277353 ], [ 153.487675200000012, -28.1280395 ], [ 153.48794620000001, -28.1284964 ], [ 153.4880632, -28.1288504 ], [ 153.48898, -28.1306192 ], [ 153.4891069, -28.1308958 ], [ 153.4893061, -28.1310715 ], [ 153.4895616, -28.1313604 ], [ 153.489796, -28.1316762 ], [ 153.489971700000012, -28.1318777 ], [ 153.4901595, -28.1320659 ], [ 153.4902098, -28.1319912 ], [ 153.4902602, -28.1320063 ], [ 153.490313500000013, -28.132058 ], [ 153.49029250000001, -28.1321119 ], [ 153.490345600000012, -28.1321401 ], [ 153.490348899999987, -28.1320668 ], [ 153.49036171631144, -28.13204180088297 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way54607830" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.502392173223825, -33.345238901004691 ], [ 151.5023448, -33.345483 ], [ 151.50238250000001, -33.3456309 ], [ 151.502759200000014, -33.3457073 ], [ 151.503076099999987, -33.3457691 ], [ 151.503576, -33.3456073 ], [ 151.5039104, -33.345522 ], [ 151.504259, -33.3456132 ], [ 151.504435, -33.3460426 ], [ 151.5042449, -33.3465131 ], [ 151.5038467, -33.3466951 ], [ 151.503592, -33.3468959 ], [ 151.5033838, -33.3475366 ], [ 151.503298541375017, -33.347793543039934 ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrigal Beach", "id": "way54609773" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.460351176292221, -33.41901534833687 ], [ 151.46034370000001, -33.4189948 ], [ 151.46026280000001, -33.4189819 ], [ 151.460097499999989, -33.4191098 ], [ 151.4595946, -33.4193577 ], [ 151.459266899999989, -33.4197359 ], [ 151.4591878, -33.4202003 ], [ 151.459036, -33.4204958 ], [ 151.4588579, -33.420584 ], [ 151.4586995, -33.4207639 ], [ 151.458578499999987, -33.4211548 ], [ 151.4584026, -33.4211585 ], [ 151.4579539, -33.4211383 ], [ 151.4575163, -33.4212687 ], [ 151.4569511, -33.4216193 ], [ 151.456344, -33.4221112 ], [ 151.4556974, -33.4227335 ], [ 151.4550552, -33.4232419 ], [ 151.4544687, -33.4238421 ], [ 151.454201899999987, -33.4242699 ], [ 151.454044, -33.4246606 ], [ 151.453998, -33.4248612 ], [ 151.4536109, -33.4254261 ], [ 151.453427799999986, -33.4260904 ], [ 151.4532709, -33.426352 ], [ 151.453248300000013, -33.4264645 ], [ 151.4531582, -33.4265563 ], [ 151.452988800000014, -33.4265893 ], [ 151.4526237, -33.4266076 ], [ 151.45226310000001, -33.426604 ], [ 151.4517638, -33.4269546 ], [ 151.4511106, -33.4276374 ], [ 151.450409, -33.4283899 ], [ 151.4499032, -33.4288837 ], [ 151.449300599999987, -33.4295187 ], [ 151.448862100000014, -33.4298926 ], [ 151.448385699999989, -33.4302988 ], [ 151.4480646, -33.4307522 ], [ 151.4477875, -33.4309119 ], [ 151.4476929, -33.4310018 ], [ 151.4473102, -33.431345 ], [ 151.447041899999988, -33.4317672 ], [ 151.4467076, -33.4321838 ], [ 151.4461028, -33.4329326 ], [ 151.4456299, -33.4336576 ], [ 151.4450295, -33.4346065 ], [ 151.444581199999988, -33.4353881 ], [ 151.444233700000012, -33.4360341 ], [ 151.443952200000012, -33.4368637 ], [ 151.4436135, -33.4379208 ], [ 151.4433496, -33.4388458 ], [ 151.44324850000001, -33.4399102 ], [ 151.4431385, -33.440993 ], [ 151.4431253, -33.4419987 ], [ 151.4432792, -33.4430815 ], [ 151.443338620022899, -33.443288234694556 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way54609778" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.499329015709549, -33.36377224611909 ], [ 151.499313699999988, -33.3640115 ], [ 151.499029900000011, -33.3645151 ], [ 151.4982142, -33.365305 ], [ 151.4980377, -33.3654501 ], [ 151.4975705, -33.3658342 ], [ 151.4970298, -33.3661292 ], [ 151.4961098, -33.3662677 ], [ 151.4950169, -33.3666227 ], [ 151.4945169, -33.3669128 ], [ 151.494193700000011, -33.3672882 ], [ 151.4940494, -33.3675636 ], [ 151.4932799, -33.3679947 ], [ 151.492705300000011, -33.3686482 ], [ 151.492066599999987, -33.3690767 ], [ 151.4912443, -33.3697815 ], [ 151.4905365, -33.3705597 ], [ 151.4897664, -33.3713499 ], [ 151.488492400000013, -33.3727297 ], [ 151.487666100000013, -33.3737722 ], [ 151.487042, -33.3750351 ], [ 151.486464500000011, -33.3766292 ], [ 151.4863167, -33.3772733 ], [ 151.486377800000014, -33.377698 ], [ 151.4861958, -33.3780929 ], [ 151.4860367, -33.3786142 ], [ 151.4859836, -33.3790039 ], [ 151.486054599999989, -33.3794315 ], [ 151.4861698, -33.3798103 ], [ 151.486197299999986, -33.3798471 ], [ 151.4863918, -33.3801072 ], [ 151.4866739, -33.3803641 ], [ 151.4867793, -33.3804348 ], [ 151.4867276, -33.3806705 ], [ 151.4865541, -33.3807054 ], [ 151.486518600000011, -33.3807683 ], [ 151.4864747, -33.3814244 ], [ 151.486513412034867, -33.381686337075301 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way54667479" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.443240913820176, -33.442812128489201 ], [ 151.4432792, -33.4430815 ], [ 151.44357260000001, -33.4441023 ], [ 151.443972699999989, -33.4449325 ], [ 151.444694199999986, -33.4460623 ], [ 151.4454207, -33.4470667 ], [ 151.44599070000001, -33.4476873 ], [ 151.4465152, -33.4478871 ], [ 151.4468406, -33.4479345 ], [ 151.4469507, -33.4479304 ], [ 151.446997, -33.4478912 ], [ 151.4470096, -33.4478245 ], [ 151.446988787168181, -33.447778571261424 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Avoca Beach", "id": "way54667480" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.441516663697143, -33.458042722970688 ], [ 151.4414285, -33.4579723 ], [ 151.4413638, -33.4578911 ], [ 151.441075500000011, -33.4579193 ], [ 151.4407151, -33.4579966 ], [ 151.4404822, -33.4581607 ], [ 151.440155299999986, -33.4584358 ], [ 151.439678500000014, -33.4591362 ], [ 151.438647, -33.4603449 ], [ 151.438104, -33.4612329 ], [ 151.437222, -33.4623635 ], [ 151.4365776, -33.4637793 ], [ 151.436481718429974, -33.463979605689055 ] ] } }, +{ "type": "Feature", "properties": { "name": "Avoca Beach", "id": "way54669965" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.436666722411019, -33.463583490705268 ], [ 151.4365776, -33.4637793 ], [ 151.4364373, -33.4640724 ], [ 151.4359978, -33.4651746 ], [ 151.4356448, -33.46624 ], [ 151.4355205, -33.4671611 ], [ 151.4354349, -33.467581 ], [ 151.4354935, -33.4680435 ], [ 151.4356421, -33.4686054 ], [ 151.4359476, -33.4692525 ], [ 151.436303900000013, -33.4698286 ], [ 151.4365644, -33.4700987 ], [ 151.4369628, -33.4701033 ], [ 151.4374853, -33.4700161 ], [ 151.437950300000011, -33.4702367 ], [ 151.438160982119456, -33.470192964649314 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way54680278" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.132672592439519, -32.764533913908764 ], [ 152.132348, -32.764151 ], [ 152.131755, -32.764418 ], [ 152.130871, -32.764475 ], [ 152.125636, -32.766755 ], [ 152.125107, -32.766969 ], [ 152.124970499999989, -32.767081 ], [ 152.124462, -32.767498 ], [ 152.122863, -32.768399 ], [ 152.1216538, -32.7692434 ], [ 152.121408, -32.769415 ], [ 152.121416, -32.769752 ], [ 152.120982, -32.77036 ], [ 152.12093010000001, -32.7705037 ], [ 152.120727, -32.770632 ], [ 152.120047, -32.770631 ], [ 152.118345, -32.772327 ], [ 152.116257, -32.776221 ], [ 152.116676, -32.779517 ], [ 152.116768, -32.779695 ], [ 152.117109, -32.779848 ], [ 152.117313343062051, -32.779786306616934 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way55486822" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.993707943677379, -34.227648821160336 ], [ 150.9934993, -34.2277086 ], [ 150.9934418, -34.2277807 ], [ 150.9933077, -34.2278899 ], [ 150.9930735, -34.2280307 ], [ 150.992886199999987, -34.2282049 ], [ 150.9927563, -34.2282912 ], [ 150.992603, -34.2283757 ], [ 150.992481700000013, -34.2285341 ], [ 150.9923263, -34.2286027 ], [ 150.992207, -34.2287031 ], [ 150.992077200000011, -34.2288051 ], [ 150.9919175, -34.2289424 ], [ 150.9916876, -34.2291044 ], [ 150.991513, -34.2292804 ], [ 150.9912874, -34.2294353 ], [ 150.990914800000013, -34.2296817 ], [ 150.9907658, -34.2298894 ], [ 150.990555, -34.2300144 ], [ 150.9904848, -34.2301164 ], [ 150.9900867, -34.2303752 ], [ 150.9898844, -34.2306538 ], [ 150.989575800000011, -34.2308733 ], [ 150.98938290000001, -34.2310086 ], [ 150.9892458, -34.2311373 ], [ 150.9890265, -34.2312887 ], [ 150.9887774, -34.2314735 ], [ 150.988617799999986, -34.2316284 ], [ 150.9885284, -34.231785 ], [ 150.9884347, -34.2318924 ], [ 150.988322399999987, -34.2320587 ], [ 150.9881963, -34.2322356 ], [ 150.9880536, -34.2325154 ], [ 150.987862, -34.2327214 ], [ 150.98765130000001, -34.2329326 ], [ 150.987512900000013, -34.2330751 ], [ 150.9872957, -34.2334219 ], [ 150.987255299999987, -34.233568 ], [ 150.987289730662297, -34.233638886657644 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way55567747" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.979154549546251, -34.243012154463628 ], [ 150.9790815, -34.243041 ], [ 150.978996200000012, -34.243078 ], [ 150.978941, -34.2431014 ], [ 150.97874920000001, -34.2431945 ], [ 150.9786312, -34.2432754 ], [ 150.978454199999987, -34.2434029 ], [ 150.9782141, -34.243608 ], [ 150.9780841, -34.2437078 ], [ 150.9779862, -34.2437788 ], [ 150.9778024, -34.2439306 ], [ 150.9776066, -34.2441269 ], [ 150.9774041, -34.244322 ], [ 150.9772432, -34.2444994 ], [ 150.9771198, -34.2447144 ], [ 150.9769991, -34.2448918 ], [ 150.9768637, -34.2451113 ], [ 150.9768233, -34.2452454 ], [ 150.976798800000012, -34.2454092 ], [ 150.9768207, -34.2455433 ], [ 150.9768355, -34.2456601 ], [ 150.976827, -34.2459015 ], [ 150.976864299999988, -34.2460607 ], [ 150.9769164, -34.2461417 ], [ 150.976954799999987, -34.2461927 ], [ 150.976991058645041, -34.24623723242982 ] ] } }, +{ "type": "Feature", "properties": { "name": "The Farm", "id": "way55889022" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.871815779755252, -34.604082775476762 ], [ 150.871761099999986, -34.6040148 ], [ 150.871658, -34.6039321 ], [ 150.8712476, -34.6036892 ], [ 150.871006200000011, -34.6036208 ], [ 150.870679, -34.6035833 ], [ 150.8703518, -34.6035678 ], [ 150.8700514, -34.60357 ], [ 150.869683900000012, -34.6035855 ], [ 150.8692601, -34.6036318 ], [ 150.8685628, -34.6037202 ], [ 150.8679807, -34.6038416 ], [ 150.867497899999989, -34.6039851 ], [ 150.867106299999989, -34.6040866 ], [ 150.86676030000001, -34.6042257 ], [ 150.8660898, -34.6045238 ], [ 150.8656767, -34.6047467 ], [ 150.8654031, -34.6049741 ], [ 150.865269, -34.6050911 ], [ 150.8651537, -34.6052413 ], [ 150.8650437, -34.6054377 ], [ 150.8649002, -34.6056475 ], [ 150.8647728, -34.6058031 ], [ 150.864742760153177, -34.605847860002847 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way55889024" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.874909888343637, -34.581890989210514 ], [ 150.8747093, -34.5819763 ], [ 150.874191, -34.582463 ], [ 150.8739663, -34.5827213 ], [ 150.8737763, -34.5830073 ], [ 150.8736213, -34.5833513 ], [ 150.8735361, -34.5837465 ], [ 150.8736393, -34.5853423 ], [ 150.8738644, -34.5864733 ], [ 150.8740204, -34.5869883 ], [ 150.8744395, -34.5880129 ], [ 150.8748391, -34.588799 ], [ 150.8751284, -34.5893513 ], [ 150.8755783, -34.5897523 ], [ 150.8759234, -34.5899233 ], [ 150.876129843093281, -34.589994047583275 ] ] } }, +{ "type": "Feature", "properties": { "name": "Granite Bay", "id": "way61289179" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.110279623780087, -26.378769024506369 ], [ 153.1104252, -26.3789067 ], [ 153.1106744, -26.3790238 ], [ 153.1111104, -26.3791764 ], [ 153.111572, -26.37928 ], [ 153.111977, -26.379228 ], [ 153.1120434, -26.3791993 ], [ 153.112166, -26.3791423 ], [ 153.112230848467703, -26.379128352369122 ] ] } }, +{ "type": "Feature", "properties": { "name": "Silver Beach", "id": "way77085587" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.19236859237904, -34.006957090706337 ], [ 151.192391, -34.006954 ], [ 151.192417, -34.006954 ], [ 151.192439, -34.006959 ], [ 151.192454, -34.006975 ], [ 151.192463, -34.007 ], [ 151.192468, -34.00703 ], [ 151.192476, -34.007059 ], [ 151.192489, -34.007084 ], [ 151.192523, -34.007109 ], [ 151.192568, -34.007128 ], [ 151.192673, -34.007158 ], [ 151.192723, -34.007174 ], [ 151.192936, -34.007272 ], [ 151.192991, -34.007295 ], [ 151.193051, -34.007316 ], [ 151.193234, -34.007373 ], [ 151.193347, -34.007413 ], [ 151.193451, -34.007455 ], [ 151.193554, -34.007499 ], [ 151.193603, -34.007521 ], [ 151.193699, -34.007569 ], [ 151.193796, -34.007612 ], [ 151.193912, -34.007651 ], [ 151.193971, -34.007669 ], [ 151.194031, -34.007684 ], [ 151.194091, -34.007696 ], [ 151.194146, -34.007705 ], [ 151.194202, -34.007712 ], [ 151.194314, -34.007721 ], [ 151.194485, -34.007724 ], [ 151.194561, -34.007728 ], [ 151.1946, -34.007732 ], [ 151.194678, -34.007743 ], [ 151.194717, -34.007746 ], [ 151.194755, -34.007744 ], [ 151.194799, -34.007736 ], [ 151.194843, -34.007723 ], [ 151.194885, -34.007706 ], [ 151.194925, -34.007686 ], [ 151.194961, -34.007663 ], [ 151.195002, -34.007642 ], [ 151.195041, -34.007615 ], [ 151.195068, -34.007587 ], [ 151.195085, -34.007556 ], [ 151.195107, -34.007534 ], [ 151.195127, -34.007531 ], [ 151.19515, -34.007535 ], [ 151.195228, -34.007562 ], [ 151.195275, -34.00758 ], [ 151.195407, -34.007646 ], [ 151.195452, -34.007667 ], [ 151.19552, -34.007692 ], [ 151.195589, -34.007715 ], [ 151.195729, -34.007757 ], [ 151.195798, -34.00778 ], [ 151.195871, -34.007806 ], [ 151.196084899999988, -34.0078843 ], [ 151.1961997, -34.007918 ], [ 151.196368299999989, -34.0079456 ], [ 151.1964371, -34.007953 ], [ 151.1965117, -34.0079572 ], [ 151.196568, -34.0079574 ], [ 151.196614, -34.0079498 ], [ 151.1966529, -34.00794 ], [ 151.1967185, -34.0079187 ], [ 151.196759, -34.0079134 ], [ 151.1968458, -34.007888 ], [ 151.196903099999986, -34.0078718 ], [ 151.1969628, -34.007846 ], [ 151.19702860000001, -34.0078183 ], [ 151.19709, -34.0077923 ], [ 151.1971499, -34.0077609 ], [ 151.1971829, -34.0077406 ], [ 151.1972264, -34.0077084 ], [ 151.197317, -34.007703 ], [ 151.197331, -34.007688 ], [ 151.197367, -34.007643 ], [ 151.197387, -34.007621 ], [ 151.197407, -34.007604 ], [ 151.19743, -34.007595 ], [ 151.197451, -34.007594 ], [ 151.197474, -34.007599 ], [ 151.197497, -34.007606 ], [ 151.197592, -34.007643 ], [ 151.19764, -34.007666 ], [ 151.197735, -34.007718 ], [ 151.197783, -34.007741 ], [ 151.197899, -34.007791 ], [ 151.197958, -34.007814 ], [ 151.19808, -34.007854 ], [ 151.198148, -34.007871 ], [ 151.198217, -34.007886 ], [ 151.198287, -34.007898 ], [ 151.1983574, -34.0079116 ], [ 151.198427, -34.007906 ], [ 151.198489, -34.0079 ], [ 151.198551, -34.007889 ], [ 151.198613, -34.007875 ], [ 151.198736, -34.007843 ], [ 151.198836, -34.007819 ], [ 151.198886, -34.007806 ], [ 151.19898, -34.007772 ], [ 151.199011, -34.007757 ], [ 151.199041, -34.00774 ], [ 151.199128, -34.007687 ], [ 151.1992, -34.007638 ], [ 151.199225, -34.007624 ], [ 151.199268, -34.007611 ], [ 151.199311099999989, -34.007606 ], [ 151.19934, -34.007609 ], [ 151.19937, -34.00762 ], [ 151.199398, -34.007639 ], [ 151.199454, -34.007686 ], [ 151.199484, -34.007706 ], [ 151.199522, -34.007724 ], [ 151.199561, -34.00774 ], [ 151.199643, -34.007766 ], [ 151.199685, -34.007776 ], [ 151.199744, -34.007783 ], [ 151.199804, -34.0078 ], [ 151.199923, -34.007844 ], [ 151.199984, -34.00786 ], [ 151.200057, -34.007873 ], [ 151.2001981, -34.0078968 ], [ 151.200282, -34.007894 ], [ 151.200356, -34.007896 ], [ 151.200598, -34.007842 ], [ 151.20089, -34.007818 ], [ 151.20156, -34.007841 ], [ 151.20199, -34.008 ], [ 151.202063, -34.008008 ], [ 151.202137, -34.008012 ], [ 151.202220899999986, -34.0080092 ], [ 151.202283, -34.008013 ], [ 151.202364, -34.008009 ], [ 151.202444, -34.008002 ], [ 151.202602, -34.007976 ], [ 151.202678, -34.007956 ], [ 151.202717, -34.007942 ], [ 151.202791, -34.007907 ], [ 151.202829, -34.007891 ], [ 151.202867, -34.007881 ], [ 151.202998, -34.007885 ], [ 151.203067, -34.0079 ], [ 151.203136, -34.007918 ], [ 151.203204, -34.007932 ], [ 151.203363, -34.007958 ], [ 151.203415, -34.007969 ], [ 151.203504, -34.007997 ], [ 151.203541, -34.008013 ], [ 151.203695, -34.008085 ], [ 151.203783, -34.008131 ], [ 151.203828, -34.008149 ], [ 151.203935, -34.008162 ], [ 151.203999, -34.008151 ], [ 151.204129, -34.008116 ], [ 151.204194, -34.008103 ], [ 151.204262, -34.008096 ], [ 151.204532, -34.008077 ], [ 151.20468, -34.008064 ], [ 151.204729, -34.008058 ], [ 151.204777, -34.008049 ], [ 151.204867, -34.008023 ], [ 151.20494, -34.008028 ], [ 151.20499, -34.008053 ], [ 151.205095, -34.008122 ], [ 151.20515, -34.008148 ], [ 151.205214, -34.008168 ], [ 151.205349, -34.008195 ], [ 151.205486, -34.008216 ], [ 151.205568, -34.008227 ], [ 151.20565, -34.008235 ], [ 151.205815, -34.008248 ], [ 151.20598, -34.008258 ], [ 151.206229, -34.008264 ], [ 151.20631, -34.008259 ], [ 151.206371, -34.008251 ], [ 151.206758, -34.008171 ], [ 151.206807, -34.008163 ], [ 151.206956, -34.008159 ], [ 151.207056, -34.008173 ], [ 151.20726, -34.008213 ], [ 151.207361, -34.008227 ], [ 151.207511, -34.008241 ], [ 151.207586, -34.008246 ], [ 151.207661, -34.008249 ], [ 151.207736, -34.008248 ], [ 151.207816, -34.008243 ], [ 151.207895, -34.008233 ], [ 151.207974, -34.008221 ], [ 151.208131, -34.008192 ], [ 151.208203, -34.008175 ], [ 151.208417, -34.008118 ], [ 151.208489, -34.008103 ], [ 151.208549, -34.008094 ], [ 151.208669, -34.008081 ], [ 151.2087436, -34.0080717 ], [ 151.20879, -34.008076 ], [ 151.208884, -34.008084 ], [ 151.209071, -34.008124 ], [ 151.209165, -34.008141 ], [ 151.209257, -34.008146 ], [ 151.209314, -34.0082026 ], [ 151.2095721, -34.0081991 ], [ 151.2098149, -34.0082334 ], [ 151.210018100000013, -34.0081744 ], [ 151.210300600000011, -34.0080918 ], [ 151.210561899999988, -34.0080326 ], [ 151.210925300000014, -34.0079918 ], [ 151.2110891, -34.0080051 ], [ 151.2111861, -34.0079763 ], [ 151.211350900000014, -34.0079806 ], [ 151.211660599999988, -34.0079148 ], [ 151.211724299999986, -34.0078803 ], [ 151.2118399, -34.0078362 ], [ 151.212001, -34.0077503 ], [ 151.2121769, -34.0076737 ], [ 151.2122406, -34.0076488 ], [ 151.212312700000012, -34.0076095 ], [ 151.2124274, -34.0075826 ], [ 151.2125001, -34.0075767 ], [ 151.2126486, -34.0075535 ], [ 151.2127537, -34.0075518 ], [ 151.2128516, -34.0075151 ], [ 151.2131221, -34.0074602 ], [ 151.213490400000012, -34.0074133 ], [ 151.2136787, -34.0073355 ], [ 151.213980600000014, -34.0072214 ], [ 151.2142231, -34.0071093 ], [ 151.214407599999987, -34.0070191 ], [ 151.2145061, -34.0069799 ], [ 151.214566100000013, -34.006943 ], [ 151.2146744, -34.0069028 ], [ 151.2147096, -34.0067889 ], [ 151.2147917, -34.0067252 ], [ 151.2149841, -34.0066472 ], [ 151.215118600000011, -34.0065638 ], [ 151.2152707, -34.006503 ], [ 151.2154233, -34.0064771 ], [ 151.215437400000013, -34.0064633 ], [ 151.215448303763793, -34.006452628697801 ] ] } }, +{ "type": "Feature", "properties": { "name": "Elouera Beach", "id": "way77090123" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.160768677534548, -34.045196187373243 ], [ 151.1606392, -34.0453701 ], [ 151.160328099999987, -34.0457679 ], [ 151.1600143, -34.0461079 ], [ 151.159322300000014, -34.0469702 ], [ 151.158734900000013, -34.047688 ], [ 151.1585605, -34.0479258 ], [ 151.158440165683459, -34.04811380398111 ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Beach", "id": "way77993576" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.235418425330948, -35.703871148337456 ], [ 150.2354278, -35.7036287 ], [ 150.235107, -35.7032552 ], [ 150.2344769, -35.702976 ], [ 150.2338406, -35.7027955 ], [ 150.230349600000011, -35.7024709 ], [ 150.22950560000001, -35.7024384 ], [ 150.229057, -35.702425 ], [ 150.2287574, -35.7024524 ], [ 150.228098499999987, -35.7025693 ], [ 150.2273472, -35.7027911 ], [ 150.2257679, -35.7032378 ], [ 150.224426099999988, -35.7036302 ], [ 150.2235775, -35.7039049 ], [ 150.222133500000012, -35.7043991 ], [ 150.2193928, -35.7055584 ], [ 150.217229800000013, -35.7066239 ], [ 150.2165488, -35.7069471 ], [ 150.2156561, -35.7073751 ], [ 150.2143212, -35.7080377 ], [ 150.2130192, -35.7086438 ], [ 150.212916598572662, -35.708839527482098 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bherwerre Beach", "id": "way78271876" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.662587294386185, -35.16394357553559 ], [ 150.662779300000011, -35.1638352 ], [ 150.6625448, -35.1634875 ], [ 150.662238800000011, -35.1632159 ], [ 150.6616225, -35.163086 ], [ 150.6606322, -35.1630106 ], [ 150.65744380000001, -35.1632089 ], [ 150.6524264, -35.1635205 ], [ 150.647384100000011, -35.1640487 ], [ 150.638509199999987, -35.1654241 ], [ 150.6306308, -35.1670302 ], [ 150.6200053, -35.1699207 ], [ 150.6103156, -35.173011 ], [ 150.6074786, -35.1742706 ], [ 150.6028583, -35.1765357 ], [ 150.5996858, -35.1784354 ], [ 150.5976092, -35.1802458 ], [ 150.59706030000001, -35.1808992 ], [ 150.596286099999986, -35.1819109 ], [ 150.5957056, -35.1828764 ], [ 150.5951464, -35.1834784 ], [ 150.594749799999988, -35.1836826 ], [ 150.594605349520862, -35.183911206637369 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cave Beach", "id": "way78271877" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.675570309058202, -35.164910268820925 ], [ 150.675748700000014, -35.164782 ], [ 150.67551370000001, -35.1643808 ], [ 150.6746843, -35.1638383 ], [ 150.6735091, -35.1635146 ], [ 150.670700399999987, -35.1630484 ], [ 150.666823, -35.1629479 ], [ 150.666661431940241, -35.163096614206054 ] ] } }, +{ "type": "Feature", "properties": { "name": "Steamer's Beach", "id": "way78271878" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.729301025045288, -35.173153357700983 ], [ 150.7292143, -35.1730171 ], [ 150.728636655254661, -35.172887289452156 ] ] } }, +{ "type": "Feature", "properties": { "name": "Towradgi Beach", "id": "way78388644" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.915093382385351, -34.386302393494795 ], [ 150.915046, -34.386263 ], [ 150.914408400000013, -34.38646 ], [ 150.914195, -34.386526 ], [ 150.913284, -34.387095 ], [ 150.912982, -34.387392 ], [ 150.912119100000012, -34.388155 ], [ 150.9120029, -34.3882942 ], [ 150.911802599999987, -34.3884753 ], [ 150.911357, -34.38902 ], [ 150.9107029, -34.389731 ], [ 150.9100324, -34.39055 ], [ 150.909501299999988, -34.3911697 ], [ 150.909217, -34.3915991 ], [ 150.9088898, -34.3920019 ], [ 150.9086055, -34.3923339 ], [ 150.908348, -34.3926527 ], [ 150.908069, -34.3930024 ], [ 150.9078222, -34.3933963 ], [ 150.907596899999987, -34.393839 ], [ 150.907377, -34.3943171 ], [ 150.9068996, -34.3950873 ], [ 150.906464, -34.395958 ], [ 150.9063256, -34.3962337 ], [ 150.906189, -34.396488 ], [ 150.905638900000014, -34.3975882 ], [ 150.905059599999987, -34.3986992 ], [ 150.904614, -34.399527 ], [ 150.904458799999986, -34.3998988 ], [ 150.9043139, -34.4003192 ], [ 150.9041905, -34.400722 ], [ 150.9040564, -34.4010274 ], [ 150.903782799999988, -34.4017489 ], [ 150.9035844, -34.4024615 ], [ 150.90323570000001, -34.4033733 ], [ 150.9028548, -34.4043072 ], [ 150.9025866, -34.4052853 ], [ 150.9023398, -34.4063785 ], [ 150.902191, -34.407372 ], [ 150.9021306, -34.4076753 ], [ 150.902141300000011, -34.4080427 ], [ 150.902195, -34.40841 ], [ 150.902275, -34.4087 ], [ 150.9024042, -34.408857 ], [ 150.90241201635007, -34.408886024348824 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way85614603" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.961286485676567, -34.271884246538271 ], [ 150.9612787, -34.2719298 ], [ 150.961284, -34.2719974 ], [ 150.961289099999988, -34.2720463 ], [ 150.9612579, -34.2721032 ], [ 150.9612344, -34.2721326 ], [ 150.961184800000012, -34.2721925 ], [ 150.9611352, -34.2722346 ], [ 150.9611003, -34.2722678 ], [ 150.961037299999987, -34.272311 ], [ 150.9609608, -34.2723642 ], [ 150.9609206, -34.2723919 ], [ 150.9608804, -34.2724152 ], [ 150.9608509, -34.2724385 ], [ 150.9607771, -34.2724895 ], [ 150.9607007, -34.2725504 ], [ 150.9606282, -34.2726125 ], [ 150.960411, -34.2727144 ], [ 150.960297, -34.2727566 ], [ 150.9602112, -34.2728275 ], [ 150.9601159, -34.2729982 ], [ 150.960023400000011, -34.2730912 ], [ 150.9598973, -34.2732209 ], [ 150.9597847, -34.2733539 ], [ 150.9597042, -34.2734603 ], [ 150.9595835, -34.2735955 ], [ 150.9595098, -34.2737174 ], [ 150.9594253, -34.2738371 ], [ 150.9592321, -34.2740233 ], [ 150.958945199999988, -34.2742516 ], [ 150.9587359, -34.2744821 ], [ 150.9584865, -34.2747613 ], [ 150.9581968, -34.2750517 ], [ 150.9580278, -34.2752623 ], [ 150.957774699999987, -34.2755768 ], [ 150.957689499999987, -34.275707 ], [ 150.9575597, -34.2760272 ], [ 150.957470300000011, -34.2762154 ], [ 150.957327600000013, -34.2764916 ], [ 150.9572808, -34.2766446 ], [ 150.9571951, -34.2768851 ], [ 150.957136063865562, -34.277094331005856 ] ] } }, +{ "type": "Feature", "properties": { "name": "Sharky Beach", "id": "way85614613" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.945492882660318, -34.293481996393702 ], [ 150.9454912, -34.2934837 ], [ 150.94546170000001, -34.2935014 ], [ 150.9454375, -34.2935369 ], [ 150.945381200000014, -34.2935701 ], [ 150.945314200000013, -34.2936056 ], [ 150.9452135, -34.293679 ], [ 150.945007299999986, -34.2937879 ], [ 150.9448231, -34.293901 ], [ 150.9447251, -34.2939666 ], [ 150.9446161, -34.2940443 ], [ 150.9445308, -34.2941537 ], [ 150.9444183, -34.2942903 ], [ 150.9443, -34.29443 ], [ 150.944202, -34.294536 ], [ 150.944113499999986, -34.2945613 ], [ 150.94403410000001, -34.2946129 ], [ 150.9439918, -34.2946743 ], [ 150.9439783, -34.2947651 ], [ 150.943784, -34.2949256 ], [ 150.943603200000013, -34.2950722 ], [ 150.9435238, -34.2951252 ], [ 150.943427500000013, -34.2951992 ], [ 150.9433867, -34.2952455 ], [ 150.9431554, -34.2954952 ], [ 150.9430557, -34.2955636 ], [ 150.9429983, -34.2956361 ], [ 150.942865, -34.29586 ], [ 150.9427714, -34.2960652 ], [ 150.9426427, -34.2962802 ], [ 150.942479100000014, -34.2964818 ], [ 150.9423409, -34.2966768 ], [ 150.9422362, -34.2968269 ], [ 150.9421126, -34.2970236 ], [ 150.9420031, -34.2971969 ], [ 150.9419316, -34.2973525 ], [ 150.9418571, -34.2974686 ], [ 150.941789, -34.2975723 ], [ 150.941744300000011, -34.2976269 ], [ 150.9416975, -34.2977183 ], [ 150.94162750000001, -34.297859 ], [ 150.941580499999986, -34.2978988 ], [ 150.941555099999988, -34.2979221 ], [ 150.9415443, -34.2979697 ], [ 150.9415564, -34.2980384 ], [ 150.9415477, -34.2981753 ], [ 150.941535, -34.2982583 ], [ 150.94148770000001, -34.2983435 ], [ 150.941477600000013, -34.2983819 ], [ 150.9414708, -34.2984189 ], [ 150.941464, -34.2984796 ], [ 150.9414625, -34.2985736 ], [ 150.9414692, -34.2986467 ], [ 150.941484, -34.2987298 ], [ 150.9415027, -34.298814 ], [ 150.941533600000014, -34.2989181 ], [ 150.9415215, -34.2989957 ], [ 150.9415175, -34.2990721 ], [ 150.941537381884075, -34.299144406752504 ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenhills Beach", "id": "way86379306" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.178081509448532, -34.035704090047076 ], [ 151.178073, -34.035704 ], [ 151.177811100000014, -34.0357591 ], [ 151.177693, -34.035784 ], [ 151.177521, -34.03581 ], [ 151.177365, -34.03588 ], [ 151.177249, -34.035885 ], [ 151.177134, -34.035893 ], [ 151.177018, -34.035904 ], [ 151.176903, -34.035917 ], [ 151.176789, -34.035932 ], [ 151.176661, -34.035953 ], [ 151.176533, -34.035978 ], [ 151.176406, -34.036005 ], [ 151.176155, -34.036064 ], [ 151.175888, -34.036135 ], [ 151.175625, -34.036214 ], [ 151.175494, -34.036257 ], [ 151.17534, -34.036311 ], [ 151.175188, -34.036368 ], [ 151.174559, -34.03662 ], [ 151.174208, -34.036764 ], [ 151.174031, -34.036834 ], [ 151.173853, -34.0369 ], [ 151.173674, -34.036958 ], [ 151.173494, -34.037013 ], [ 151.172815, -34.037206 ], [ 151.172547, -34.037276 ], [ 151.172416, -34.037316 ], [ 151.172288, -34.037362 ], [ 151.172137, -34.037428 ], [ 151.171991, -34.037502 ], [ 151.171848, -34.037582 ], [ 151.17171, -34.037668 ], [ 151.171575, -34.037755 ], [ 151.171469, -34.037833 ], [ 151.171271, -34.038003 ], [ 151.171168, -34.038083 ], [ 151.171056, -34.038152 ], [ 151.170933, -34.038206 ], [ 151.170801, -34.03825 ], [ 151.170666, -34.038288 ], [ 151.170529, -34.038324 ], [ 151.170395, -34.038364 ], [ 151.169981, -34.038498 ], [ 151.169845, -34.038546 ], [ 151.16971, -34.038597 ], [ 151.169575, -34.038655 ], [ 151.169442, -34.038717 ], [ 151.169179, -34.038846 ], [ 151.168459, -34.039194 ], [ 151.168164, -34.03933 ], [ 151.167721, -34.039527 ], [ 151.167575, -34.039596 ], [ 151.167415, -34.039675 ], [ 151.167257, -34.039756 ], [ 151.1671, -34.039839 ], [ 151.166789, -34.040009 ], [ 151.166554238952671, -34.040133140658526 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Cronulla Beach", "id": "way86379310" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.15726491172714, -34.050030411335086 ], [ 151.1571443, -34.0502104 ], [ 151.1568278, -34.0506638 ], [ 151.156358399999988, -34.0512638 ], [ 151.156082199999986, -34.0516727 ], [ 151.155931900000013, -34.0518572 ], [ 151.1559002, -34.0520746 ], [ 151.155878199999989, -34.0521607 ], [ 151.1559608, -34.0522616 ], [ 151.155963527612101, -34.052281720567251 ] ] } }, +{ "type": "Feature", "properties": { "name": "Blackwoods Beach", "id": "way86484406" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.157644940809831, -34.059624911817302 ], [ 151.1576428, -34.0596331 ], [ 151.1576163, -34.0597384 ], [ 151.157585899999987, -34.0599254 ], [ 151.157481600000011, -34.0600699 ], [ 151.15733560000001, -34.0602161 ], [ 151.1571137, -34.0604785 ], [ 151.1571725, -34.0605617 ], [ 151.1572009, -34.0606701 ], [ 151.157193460694202, -34.06075421636114 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bombo Beach", "id": "way87849653" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.858240071061232, -34.653734228215612 ], [ 150.8580274, -34.6536854 ], [ 150.8578871, -34.653734 ], [ 150.8576014, -34.6540869 ], [ 150.8572232, -34.6544766 ], [ 150.8567871, -34.6549944 ], [ 150.856486499999988, -34.6554233 ], [ 150.8562705, -34.6557315 ], [ 150.855773199999987, -34.6566586 ], [ 150.8552459, -34.6577719 ], [ 150.855001499999986, -34.6584757 ], [ 150.854813799999988, -34.6590383 ], [ 150.8546528, -34.6595634 ], [ 150.8544919, -34.6602628 ], [ 150.854414100000014, -34.6608474 ], [ 150.8543041, -34.6613902 ], [ 150.85432560000001, -34.6619902 ], [ 150.85435240000001, -34.6625793 ], [ 150.8544061, -34.6629985 ], [ 150.854473899999988, -34.6634031 ], [ 150.854457, -34.6635963 ], [ 150.8545053, -34.6638787 ], [ 150.854636699999986, -34.6642273 ], [ 150.8547333, -34.6644148 ], [ 150.855033100000014, -34.6648474 ], [ 150.8551919, -34.6649021 ], [ 150.855355581554932, -34.664938880413303 ] ] } }, +{ "type": "Feature", "properties": { "name": "Surf Beach", "id": "way87849654" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.855946918840431, -34.67545672033868 ], [ 150.8558994, -34.6754363 ], [ 150.8556506, -34.6754049 ], [ 150.8553636, -34.6755549 ], [ 150.8551544, -34.6758725 ], [ 150.855009599999988, -34.6761461 ], [ 150.8549452, -34.6763755 ], [ 150.8548889, -34.6765916 ], [ 150.8548754, -34.6768254 ], [ 150.854972, -34.677046 ], [ 150.8551419, -34.6773338 ], [ 150.855330198035858, -34.677307110800136 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kendalls Beach", "id": "way87849656" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.855408208834461, -34.679211615120401 ], [ 150.8552, -34.679277 ], [ 150.85505520000001, -34.6793709 ], [ 150.854939800000011, -34.6797635 ], [ 150.8550069, -34.6800855 ], [ 150.8551651, -34.6805311 ], [ 150.8553341, -34.6808443 ], [ 150.8555299, -34.6811244 ], [ 150.855736400000012, -34.6814354 ], [ 150.8559644, -34.6816626 ], [ 150.8562595, -34.6819096 ], [ 150.8565304, -34.6820486 ], [ 150.8569268, -34.682229 ], [ 150.8570857, -34.6822902 ], [ 150.8572546, -34.6823838 ], [ 150.857461199999989, -34.6823202 ], [ 150.857463521054513, -34.682319957139285 ] ] } }, +{ "type": "Feature", "properties": { "name": "Jones beach", "id": "way87849657" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.857306773394839, -34.635457767068999 ], [ 150.8572599, -34.6354523 ], [ 150.857089800000011, -34.6354805 ], [ 150.8570238, -34.6354892 ], [ 150.8569535, -34.6355418 ], [ 150.8568093, -34.6356024 ], [ 150.856702, -34.635737 ], [ 150.8565572, -34.6359489 ], [ 150.856323800000013, -34.6362247 ], [ 150.8561307, -34.6364476 ], [ 150.8559859, -34.6368294 ], [ 150.8559376, -34.6371031 ], [ 150.8559161, -34.6373083 ], [ 150.8558705, -34.6375797 ], [ 150.8557686, -34.6377894 ], [ 150.8555862, -34.6380343 ], [ 150.8554709, -34.6381977 ], [ 150.8554172, -34.6383499 ], [ 150.8553824, -34.6385596 ], [ 150.8553743, -34.638906 ], [ 150.8553502, -34.6391554 ], [ 150.8553153, -34.6392878 ], [ 150.8553153, -34.6394864 ], [ 150.8553207, -34.6398549 ], [ 150.8553287, -34.6401529 ], [ 150.8553153, -34.6403934 ], [ 150.8552295, -34.6407685 ], [ 150.8552027, -34.6409318 ], [ 150.8551007, -34.6410841 ], [ 150.85509540000001, -34.6411812 ], [ 150.8550766, -34.6413489 ], [ 150.8550712, -34.6414946 ], [ 150.855028299999987, -34.6415939 ], [ 150.855041699999987, -34.6416976 ], [ 150.85505520000001, -34.6418035 ], [ 150.8549559, -34.6420087 ], [ 150.854964, -34.64215 ], [ 150.854939800000011, -34.6423331 ], [ 150.8549103, -34.642428 ], [ 150.854961300000014, -34.6425516 ], [ 150.8549371, -34.6426156 ], [ 150.8549505, -34.6426928 ], [ 150.854961300000014, -34.6427833 ], [ 150.85498, -34.6430061 ], [ 150.854966600000012, -34.6432246 ], [ 150.8550069, -34.643538 ], [ 150.8552268, -34.6439396 ], [ 150.855438903675349, -34.643990415556082 ] ] } }, +{ "type": "Feature", "properties": { "name": "East Beach", "id": "way87850787" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.855293715782011, -34.689707718238282 ], [ 150.8551084, -34.6895923 ], [ 150.8544774, -34.6897199 ], [ 150.8541394, -34.6899499 ], [ 150.8539001, -34.6902291 ], [ 150.8537387, -34.6905685 ], [ 150.853696, -34.6909187 ], [ 150.853738099999987, -34.6914033 ], [ 150.853891800000014, -34.6918176 ], [ 150.8540997, -34.6922023 ], [ 150.8543336, -34.6924166 ], [ 150.8545504, -34.6925907 ], [ 150.854764535217441, -34.692632834616447 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way93288551" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.514889766389842, -35.271902077692161 ], [ 150.5150899, -35.2718111 ], [ 150.5150585, -35.2715244 ], [ 150.514824800000014, -35.27121 ], [ 150.5146949, -35.2711434 ], [ 150.5145796, -35.270827 ], [ 150.514642400000014, -35.2707776 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cunjurong Beach", "id": "way93288567" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.513584765558448, -35.267935172409643 ], [ 150.5133649, -35.2679306 ], [ 150.5132318, -35.2682265 ], [ 150.5131701, -35.2685506 ], [ 150.5131513, -35.2688484 ], [ 150.5131701, -35.2694025 ], [ 150.5131835, -35.2696039 ], [ 150.5131111, -35.2696718 ], [ 150.5129045, -35.2696828 ], [ 150.5125102, -35.2696653 ], [ 150.5121025, -35.2695558 ], [ 150.5113167, -35.2693806 ], [ 150.510453, -35.269247 ], [ 150.509913899999987, -35.2691725 ], [ 150.5093479, -35.2691331 ], [ 150.5082113, -35.2691006 ], [ 150.5076914, -35.2692474 ], [ 150.507546043350629, -35.269412434044632 ] ] } }, +{ "type": "Feature", "properties": { "name": "Manyana Beach", "id": "way93288569" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.519905355821095, -35.259686604503408 ], [ 150.519699, -35.259611 ], [ 150.519126, -35.25987 ], [ 150.518198, -35.260359 ], [ 150.5170358, -35.2613441 ], [ 150.5160115, -35.2622649 ], [ 150.515025, -35.2632432 ], [ 150.5143098, -35.2642228 ], [ 150.51386260000001, -35.2646989 ], [ 150.5135369, -35.2660817 ], [ 150.5136451, -35.266503 ], [ 150.513880613114537, -35.26657515429546 ] ] } }, +{ "type": "Feature", "properties": { "name": "Inyadda Beach", "id": "way93288573" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.539445194514627, -35.250133729744945 ], [ 150.539546800000011, -35.249938 ], [ 150.5384742, -35.249472 ], [ 150.5373284, -35.2495672 ], [ 150.5350196, -35.2504283 ], [ 150.5336246, -35.251096 ], [ 150.531908, -35.2519594 ], [ 150.531286, -35.252277 ], [ 150.5306497, -35.2525882 ], [ 150.5288208, -35.2539582 ], [ 150.5275931, -35.2552566 ], [ 150.5273637, -35.2554993 ], [ 150.5263272, -35.2569378 ], [ 150.526338, -35.257141 ], [ 150.526334556310132, -35.257157429270485 ] ] } }, +{ "type": "Feature", "properties": { "name": "Flatrock Beach", "id": "way93288576" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.530329188710965, -35.234376288302663 ], [ 150.530272700000012, -35.2343857 ], [ 150.530117600000011, -35.2343135 ], [ 150.53001, -35.2348284 ], [ 150.530400500000013, -35.2354496 ], [ 150.530620317809252, -35.235450682482778 ] ] } }, +{ "type": "Feature", "properties": { "name": "Berrara Beach", "id": "way93288644" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.548025857022793, -35.210844132388083 ], [ 150.546754, -35.211049 ], [ 150.546159, -35.211332 ], [ 150.544616, -35.212381 ], [ 150.543596, -35.213362 ], [ 150.543157, -35.213774 ], [ 150.542332, -35.214442 ], [ 150.541998, -35.214669 ], [ 150.541403, -35.215037 ], [ 150.540543, -35.215675 ], [ 150.539507, -35.216614 ], [ 150.539329, -35.216899 ], [ 150.53928, -35.218416 ], [ 150.539485, -35.218832 ], [ 150.539592682954861, -35.218834030012857 ] ] } }, +{ "type": "Feature", "properties": { "name": "Dee Beach", "id": "way93288653" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.531100534844228, -35.237054365394037 ], [ 150.5310045, -35.2371359 ], [ 150.530784, -35.237769 ], [ 150.530815685125788, -35.237864660145789 ] ] } }, +{ "type": "Feature", "properties": { "name": "Mystics", "id": "way95039342" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.855974156724557, -34.61422219711406 ], [ 150.8557848, -34.6143307 ], [ 150.855715, -34.6143894 ], [ 150.8556533, -34.6144843 ], [ 150.8555782, -34.6146543 ], [ 150.8555031, -34.6148728 ], [ 150.855481, -34.6151153 ], [ 150.8554016, -34.6153823 ], [ 150.8553779, -34.6156117 ], [ 150.8553475, -34.6158106 ], [ 150.855361, -34.6160428 ], [ 150.855393099999986, -34.6163557 ], [ 150.855437099999989, -34.6166908 ], [ 150.8554083, -34.6167909 ], [ 150.8554709, -34.6168743 ], [ 150.8555097, -34.6170482 ], [ 150.8556027, -34.6175029 ], [ 150.8556297, -34.6178171 ], [ 150.8556855, -34.6179729 ], [ 150.8557294, -34.6181564 ], [ 150.8558088, -34.6186209 ], [ 150.8558679, -34.6188058 ], [ 150.8559558, -34.6191646 ], [ 150.856043699999987, -34.6195442 ], [ 150.8561383, -34.6198835 ], [ 150.8561839, -34.6200726 ], [ 150.856261600000011, -34.620302 ], [ 150.8564633, -34.620751 ], [ 150.856646899999987, -34.6212823 ], [ 150.8568175, -34.6216077 ], [ 150.857081099999988, -34.6219678 ], [ 150.8572839, -34.6222668 ], [ 150.857461300000011, -34.6226241 ], [ 150.857598200000012, -34.6227659 ], [ 150.8578364, -34.6231177 ], [ 150.857993599999986, -34.6232832 ], [ 150.8582538, -34.6236322 ], [ 150.8585072, -34.6239562 ], [ 150.858836700000012, -34.6243427 ], [ 150.8589077, -34.6244303 ], [ 150.8590834, -34.6246152 ], [ 150.8591476, -34.6246528 ], [ 150.8591932, -34.6247779 ], [ 150.859472, -34.6249795 ], [ 150.85981670000001, -34.6253521 ], [ 150.859906200000012, -34.6257147 ], [ 150.8598637, -34.62596 ], [ 150.8598168, -34.6261492 ], [ 150.859829600000012, -34.6263138 ], [ 150.859829600000012, -34.626447 ], [ 150.8598424, -34.6266467 ], [ 150.8598935, -34.6268324 ], [ 150.8599701, -34.626997 ], [ 150.8600127, -34.6271372 ], [ 150.860051, -34.6272738 ], [ 150.8601445, -34.6273654 ], [ 150.860131, -34.6275782 ], [ 150.86033360156847, -34.627700594643727 ] ] } }, +{ "type": "Feature", "properties": { "name": "mollymook Sea beach", "id": "way95783344" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.483590669274037, -35.324685618169489 ], [ 150.4834023, -35.324572 ], [ 150.4832012, -35.3244354 ], [ 150.482625399999989, -35.3242466 ], [ 150.4820393, -35.3242257 ], [ 150.4812219, -35.3243976 ], [ 150.4803633, -35.3247122 ], [ 150.480099599999988, -35.3249593 ], [ 150.4796385, -35.3252198 ], [ 150.4791141, -35.3256224 ], [ 150.4787178, -35.3261037 ], [ 150.4781784, -35.3265578 ], [ 150.4777522, -35.3270476 ], [ 150.477008, -35.3280966 ], [ 150.476524899999987, -35.3288499 ], [ 150.476244400000013, -35.3294221 ], [ 150.475988300000012, -35.3298965 ], [ 150.4757775, -35.3303243 ], [ 150.4756198, -35.3309166 ], [ 150.4754768, -35.3314739 ], [ 150.4754184, -35.3316932 ], [ 150.475258599999989, -35.3320524 ], [ 150.475056, -35.3325292 ], [ 150.4747853, -35.3333819 ], [ 150.4745658, -35.3339228 ], [ 150.4744254, -35.3343465 ], [ 150.4739544, -35.3353808 ], [ 150.4738581, -35.3358281 ], [ 150.4738939, -35.3362954 ], [ 150.4739275, -35.3367975 ], [ 150.4739946, -35.3376153 ], [ 150.474118, -35.3386883 ], [ 150.4742202, -35.3391542 ], [ 150.4744925, -35.3397137 ], [ 150.4748827, -35.3401087 ], [ 150.4754035, -35.3405026 ], [ 150.4757938, -35.3407112 ], [ 150.4761608, -35.3408062 ], [ 150.4766466, -35.3408808 ], [ 150.476924700000012, -35.3408609 ], [ 150.4771043, -35.340843 ], [ 150.4771647, -35.3407749 ], [ 150.477139441080709, -35.340533536993611 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783345" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.475283290913382, -35.305001848443673 ], [ 150.4750675, -35.3049584 ], [ 150.4745854, -35.3048722 ], [ 150.474342400000012, -35.3048686 ], [ 150.474265300000013, -35.3049582 ], [ 150.474163800000014, -35.3051489 ], [ 150.474043599999987, -35.3053751 ], [ 150.4736739, -35.3059912 ], [ 150.4735353, -35.3063155 ], [ 150.473399699999987, -35.3065192 ], [ 150.4731625, -35.3069391 ], [ 150.4730731, -35.3072232 ], [ 150.472926, -35.307536 ], [ 150.4728451, -35.307804 ], [ 150.4727465, -35.3080001 ], [ 150.4726633, -35.3082516 ], [ 150.472674, -35.308482 ], [ 150.4725185, -35.3089103 ], [ 150.472453800000011, -35.3090838 ], [ 150.4724415, -35.3092673 ], [ 150.4723706, -35.309657 ], [ 150.4724353, -35.3101322 ], [ 150.4723521, -35.3105094 ], [ 150.472105699999986, -35.3109393 ], [ 150.4720225, -35.3111731 ], [ 150.471936199999988, -35.3113692 ], [ 150.4717852, -35.3115402 ], [ 150.4716127, -35.3117212 ], [ 150.4716127, -35.3119928 ], [ 150.4714802, -35.3123171 ], [ 150.4714864, -35.3125886 ], [ 150.4713631, -35.3129356 ], [ 150.4713138, -35.3134635 ], [ 150.4712214, -35.3142027 ], [ 150.471246, -35.3146301 ], [ 150.4713385, -35.3148916 ], [ 150.4714017, -35.3150987 ], [ 150.471397599999989, -35.3152646 ], [ 150.47134890000001, -35.3154603 ], [ 150.4713285, -35.3157356 ], [ 150.4713773, -35.316074 ], [ 150.4714342, -35.3163659 ], [ 150.4715074, -35.3165417 ], [ 150.47151550000001, -35.3167043 ], [ 150.471596799999986, -35.3167939 ], [ 150.4717635, -35.3169 ], [ 150.4718896, -35.3169398 ], [ 150.4720278, -35.3168967 ], [ 150.472141599999986, -35.3168536 ], [ 150.4723286, -35.3168171 ], [ 150.4724831, -35.3168569 ], [ 150.472544970352942, -35.3168569 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783346" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.487095194593621, -35.366469934593184 ], [ 150.486659, -35.365832 ], [ 150.48647, -35.365776 ], [ 150.486203, -35.365731 ], [ 150.485909, -35.365733 ], [ 150.485699, -35.365779 ], [ 150.485525, -35.365895 ], [ 150.48549, -35.365964 ], [ 150.485445471610547, -35.366213853740852 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783348" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.397723926859896, -35.458519802254308 ], [ 150.3976458, -35.4584211 ], [ 150.3974848, -35.4583931 ], [ 150.3972748, -35.4584791 ], [ 150.3969598, -35.4586691 ], [ 150.3957399, -35.4603171 ], [ 150.395768814884974, -35.460546812697267 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783349" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.538179627587937, -35.2215413184109 ], [ 150.537959699999988, -35.2218649 ], [ 150.5371681, -35.2220805 ], [ 150.5363917, -35.2223117 ], [ 150.535938, -35.2227448 ], [ 150.535436, -35.2232689 ], [ 150.5353413, -35.2236716 ], [ 150.535394, -35.223987 ], [ 150.53548, -35.224188 ], [ 150.535539512211272, -35.224316359671384 ] ] } }, +{ "type": "Feature", "properties": { "name": "Conjola Beach", "id": "way95783351" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.5079031974781, -35.269187596442038 ], [ 150.5076914, -35.2692474 ], [ 150.507475699999986, -35.2694923 ], [ 150.5072826, -35.269628 ], [ 150.5069259, -35.2698207 ], [ 150.506064900000013, -35.2702434 ], [ 150.5053997, -35.2705938 ], [ 150.5046836, -35.2708697 ], [ 150.504061299999989, -35.2711894 ], [ 150.503675, -35.2713974 ], [ 150.5033827, -35.2715223 ], [ 150.5028462, -35.2717785 ], [ 150.5024171, -35.2720018 ], [ 150.5020979, -35.272258 ], [ 150.5017278, -35.2724989 ], [ 150.5014622, -35.2726172 ], [ 150.5009928, -35.2728164 ], [ 150.5005234, -35.273123 ], [ 150.4999334, -35.2734405 ], [ 150.4990482, -35.2739398 ], [ 150.498662, -35.2741982 ], [ 150.4983348, -35.2744193 ], [ 150.497897599999988, -35.2747106 ], [ 150.497524700000014, -35.2749514 ], [ 150.497133100000013, -35.2751376 ], [ 150.496763, -35.2753412 ], [ 150.4965216, -35.2754989 ], [ 150.4962856, -35.2757222 ], [ 150.4959235, -35.2759806 ], [ 150.4953414, -35.2763507 ], [ 150.494880099999989, -35.2766528 ], [ 150.4944992, -35.2768959 ], [ 150.4941076, -35.2771258 ], [ 150.493941299999989, -35.2772068 ], [ 150.4936597, -35.2773776 ], [ 150.4933834, -35.2776535 ], [ 150.4931393, -35.277844 ], [ 150.49286570000001, -35.2780608 ], [ 150.492549200000013, -35.2781922 ], [ 150.492332, -35.2783214 ], [ 150.4921335, -35.2785973 ], [ 150.4917714, -35.2789235 ], [ 150.4914737, -35.2791184 ], [ 150.4910499, -35.2793417 ], [ 150.4907763, -35.2794862 ], [ 150.4905832, -35.2797183 ], [ 150.490374, -35.2799285 ], [ 150.4899341, -35.2804015 ], [ 150.4896444, -35.2806839 ], [ 150.4894352, -35.2808022 ], [ 150.488965799999988, -35.2810496 ], [ 150.488708300000013, -35.2811897 ], [ 150.48845080000001, -35.2814437 ], [ 150.4881853, -35.2816911 ], [ 150.4877722, -35.2820459 ], [ 150.4874423, -35.2823502 ], [ 150.487061399999988, -35.2826786 ], [ 150.4866672, -35.2829348 ], [ 150.4864418, -35.2831559 ], [ 150.4862353, -35.2834318 ], [ 150.4859108, -35.2837099 ], [ 150.4855943, -35.2839201 ], [ 150.4852617, -35.2842222 ], [ 150.4847038, -35.2847236 ], [ 150.4842049, -35.2852141 ], [ 150.4830703, -35.2862081 ], [ 150.4828799, -35.2865102 ], [ 150.4827082, -35.2868605 ], [ 150.482445399999989, -35.2871364 ], [ 150.4821074, -35.2874166 ], [ 150.4818445, -35.2876049 ], [ 150.4816085, -35.2878545 ], [ 150.4813939, -35.2880647 ], [ 150.4811633, -35.2883318 ], [ 150.4808736, -35.2886032 ], [ 150.4806054, -35.2887959 ], [ 150.4803747, -35.2890937 ], [ 150.480331799999988, -35.2891812 ], [ 150.4802674, -35.2893214 ], [ 150.4801333, -35.2894308 ], [ 150.4799885, -35.2895753 ], [ 150.4798973, -35.2897242 ], [ 150.4797374, -35.2898717 ], [ 150.4797905, -35.290006 ], [ 150.479823524534851, -35.290073938047037 ] ] } }, +{ "type": "Feature", "properties": { "name": "Monument Beach", "id": "way95783352" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.535185276009486, -35.225523725145443 ], [ 150.5350178, -35.2256659 ], [ 150.534295500000013, -35.22625 ], [ 150.533618499999989, -35.2268059 ], [ 150.532751, -35.2276545 ], [ 150.5325569, -35.2278444 ], [ 150.5318402, -35.2289917 ], [ 150.531621199999989, -35.2293652 ], [ 150.5312288, -35.2302005 ], [ 150.5306793, -35.2311571 ], [ 150.53041970000001, -35.2319534 ], [ 150.53048960000001, -35.2319976 ], [ 150.5304984, -35.2320891 ], [ 150.530526790416957, -35.232145201107905 ] ] } }, +{ "type": "Feature", "properties": { "name": "Burrill Beach", "id": "way95783353" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.458375241994645, -35.385741833692592 ], [ 150.4582009, -35.3857137 ], [ 150.4577849, -35.3858649 ], [ 150.457380699999987, -35.3861642 ], [ 150.456493, -35.3867449 ], [ 150.455865, -35.3872749 ], [ 150.4550515, -35.3878917 ], [ 150.4538976, -35.3887909 ], [ 150.4531466, -35.3894521 ], [ 150.452614399999987, -35.3900329 ], [ 150.45170250000001, -35.3909923 ], [ 150.4513039, -35.3914834 ], [ 150.4507841, -35.3920668 ], [ 150.450480874909658, -35.392428704695121 ] ] } }, +{ "type": "Feature", "properties": { "name": "Racecourse Beach", "id": "way95783354" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.467605831066862, -35.376384864131644 ], [ 150.467392, -35.376168 ], [ 150.467006, -35.37617 ], [ 150.466447, -35.37643 ], [ 150.466035, -35.376758 ], [ 150.465204699999987, -35.3775338 ], [ 150.464158, -35.378397 ], [ 150.4631818, -35.3792878 ], [ 150.462345, -35.380138 ], [ 150.4621358, -35.3803968 ], [ 150.4613698, -35.3811728 ], [ 150.46123080000001, -35.3813738 ], [ 150.460884, -35.382091 ], [ 150.4606059, -35.3825038 ], [ 150.4590388, -35.3847406 ], [ 150.45897471314214, -35.384959397453486 ] ] } }, +{ "type": "Feature", "properties": { "name": "Turmeil Beach", "id": "way95783355" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.39493812906889, -35.462133895030561 ], [ 150.3948569, -35.4620661 ], [ 150.3945166, -35.4622799 ], [ 150.3941709, -35.4624971 ], [ 150.3939619, -35.4627731 ], [ 150.393682899999988, -35.4632321 ], [ 150.3934739, -35.4636051 ], [ 150.393265899999989, -35.4641321 ], [ 150.392986900000011, -35.4644081 ], [ 150.392778, -35.4648671 ], [ 150.392641, -35.4654401 ], [ 150.392313, -35.4658821 ], [ 150.392105, -35.4663571 ], [ 150.391946, -35.4670281 ], [ 150.391667, -35.4674751 ], [ 150.391461, -35.4683461 ], [ 150.391252, -35.4686511 ], [ 150.3911, -35.4693211 ], [ 150.3909121, -35.4710281 ], [ 150.390775, -35.4718701 ], [ 150.390730100000013, -35.4728441 ], [ 150.3907821, -35.4734731 ], [ 150.390854100000013, -35.4738451 ], [ 150.3909251, -35.474046 ], [ 150.3920531, -35.475101 ], [ 150.392055317167944, -35.475101155749712 ] ] } }, +{ "type": "Feature", "properties": { "name": "Rennie's Beach", "id": "way95783356" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.481963151791859, -35.367184855985947 ], [ 150.4808553, -35.3675187 ], [ 150.480574, -35.367532 ], [ 150.4793344, -35.3675547 ], [ 150.478754400000014, -35.3677697 ], [ 150.4785444, -35.3678447 ], [ 150.47756, -35.36955 ], [ 150.477419001154288, -35.370026027076534 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wairo Beach", "id": "way95783357" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.440248122535763, -35.409601410012549 ], [ 150.4401364, -35.409481 ], [ 150.4384895, -35.409544 ], [ 150.438069500000012, -35.409671 ], [ 150.4362166, -35.410766 ], [ 150.4352716, -35.411141 ], [ 150.435061600000012, -35.411256 ], [ 150.434677599999986, -35.411601 ], [ 150.4313807, -35.414075 ], [ 150.430837, -35.414735 ], [ 150.430579, -35.414954 ], [ 150.429893, -35.415214 ], [ 150.429439, -35.415542 ], [ 150.4291598, -35.415858 ], [ 150.428741800000012, -35.416334 ], [ 150.427343799999989, -35.417284 ], [ 150.426575899999989, -35.4180141 ], [ 150.4257379, -35.418733 ], [ 150.4251649, -35.419078 ], [ 150.424551900000012, -35.4198991 ], [ 150.424133, -35.420359 ], [ 150.42321, -35.420877 ], [ 150.422862, -35.421319 ], [ 150.422212, -35.4218821 ], [ 150.4205031, -35.4238071 ], [ 150.41952710000001, -35.4249381 ], [ 150.418829100000011, -35.4256851 ], [ 150.4185371, -35.4261151 ], [ 150.4173662, -35.4275681 ], [ 150.416236199999986, -35.4290321 ], [ 150.415537199999989, -35.4296791 ], [ 150.415412300000014, -35.4297901 ], [ 150.4146452, -35.4307261 ], [ 150.4142143, -35.4313571 ], [ 150.4138303, -35.4317591 ], [ 150.413565299999988, -35.4321611 ], [ 150.413322, -35.432402 ], [ 150.4132533, -35.4329471 ], [ 150.4129743, -35.4332051 ], [ 150.412625, -35.433395 ], [ 150.412486, -35.43355 ], [ 150.412415399999986, -35.4336821 ], [ 150.4122084, -35.4342961 ], [ 150.41171940000001, -35.4346871 ], [ 150.411548399999987, -35.4355751 ], [ 150.4113034, -35.4358331 ], [ 150.4107454, -35.4365221 ], [ 150.4108194, -35.4372491 ], [ 150.4103384, -35.4392721 ], [ 150.4103264, -35.4396441 ], [ 150.4106294, -35.4415041 ], [ 150.41125, -35.4424187 ], [ 150.4114634, -35.4427331 ], [ 150.411923614824872, -35.443170551510953 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783358" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.391317811699338, -35.482860968436711 ], [ 150.3913162, -35.482862 ], [ 150.3906212, -35.484382 ], [ 150.389927, -35.486102 ], [ 150.3897232, -35.487408 ], [ 150.3896542, -35.487706 ], [ 150.3895152, -35.48801 ], [ 150.38943230000001, -35.488337 ], [ 150.38949537360773, -35.488524486606181 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783359" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.475729201696367, -35.371335917050224 ], [ 150.47573, -35.371391 ], [ 150.473871, -35.373077 ], [ 150.473196, -35.37377 ], [ 150.472534, -35.374488 ], [ 150.472535, -35.374557 ], [ 150.471992, -35.375292 ], [ 150.471713, -35.375522 ], [ 150.471385, -35.375735 ], [ 150.471139, -35.375765 ], [ 150.470908, -35.375811 ], [ 150.470698, -35.375881 ], [ 150.470489, -35.376013 ], [ 150.470091, -35.37633 ], [ 150.469777, -35.376514 ], [ 150.469201179288319, -35.376751640293698 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783360" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.485209566849278, -35.366397276607259 ], [ 150.485023737075551, -35.366504192367493 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beach", "id": "way95783361" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.391524518054183, -35.495213477800149 ], [ 150.391163299999988, -35.495403 ], [ 150.3910233, -35.495661 ], [ 150.390816, -35.496492 ], [ 150.390874, -35.498431 ], [ 150.391088, -35.499341 ], [ 150.391477, -35.500691 ], [ 150.391579, -35.500885 ], [ 150.392053, -35.501071 ], [ 150.392163168566583, -35.501075926236716 ] ] } }, +{ "type": "Feature", "properties": { "name": "Buckley's Beach", "id": "way95783362" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.478519002683299, -35.291439873328812 ], [ 150.4783094, -35.2915063 ], [ 150.4782933, -35.2917865 ], [ 150.4782504, -35.2920098 ], [ 150.4782826, -35.2922287 ], [ 150.478271799999987, -35.2924126 ], [ 150.47795, -35.2928549 ], [ 150.4777729, -35.2930782 ], [ 150.477595900000011, -35.2934722 ], [ 150.47735990000001, -35.2938094 ], [ 150.4771721, -35.2942822 ], [ 150.4770058, -35.2947507 ], [ 150.476812700000011, -35.2951667 ], [ 150.4766196, -35.2956177 ], [ 150.476388899999989, -35.2960117 ], [ 150.4762495, -35.29627 ], [ 150.4760939, -35.296559 ], [ 150.475916899999987, -35.2968961 ], [ 150.475659400000012, -35.2972595 ], [ 150.475530600000013, -35.297474 ], [ 150.475396499999988, -35.2977499 ], [ 150.4752034, -35.2981483 ], [ 150.4751068, -35.2983453 ], [ 150.4750478, -35.298573 ], [ 150.474983400000013, -35.2987919 ], [ 150.4749459, -35.2990283 ], [ 150.474876200000011, -35.2992516 ], [ 150.474795699999987, -35.2994793 ], [ 150.474747400000012, -35.2997201 ], [ 150.4746777, -35.3000484 ], [ 150.4746187, -35.3002498 ], [ 150.4745811, -35.3004994 ], [ 150.4745221, -35.3007796 ], [ 150.4744953, -35.3010641 ], [ 150.4745436, -35.3013312 ], [ 150.4745328, -35.3015895 ], [ 150.474484600000011, -35.3017646 ], [ 150.474377299999986, -35.3018697 ], [ 150.4742646, -35.3020054 ], [ 150.4741305, -35.3020973 ], [ 150.4740284, -35.3023865 ], [ 150.474178141892139, -35.302556163767321 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Austinmer Beach", "id": "way95786683" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.93866891871582, -34.303449124106571 ], [ 150.9386422, -34.3034415 ], [ 150.938630100000012, -34.3033972 ], [ 150.9386194, -34.3033717 ], [ 150.9385885, -34.3033463 ], [ 150.93861, -34.3033186 ], [ 150.9386408, -34.303261 ], [ 150.938685099999987, -34.3031845 ], [ 150.9386819, -34.3030866 ], [ 150.938670300000013, -34.3031236 ], [ 150.93862, -34.3031873 ], [ 150.9385738, -34.3032377 ], [ 150.9385067, -34.3033036 ], [ 150.9384947, -34.3033296 ], [ 150.9384973, -34.3033806 ], [ 150.9385081, -34.3034426 ], [ 150.9385174, -34.3035069 ], [ 150.938524199999989, -34.3035579 ], [ 150.938516099999987, -34.3035966 ], [ 150.9384638, -34.3036166 ], [ 150.9383183, -34.3036647 ], [ 150.938292100000012, -34.3036842 ], [ 150.9382331, -34.3037329 ], [ 150.9381929, -34.3037861 ], [ 150.9380883, -34.3038946 ], [ 150.937975599999987, -34.3040531 ], [ 150.9378992, -34.3041627 ], [ 150.9378549, -34.3043201 ], [ 150.9377651, -34.3047344 ], [ 150.9377208, -34.3048119 ], [ 150.9377088, -34.3048429 ], [ 150.937694, -34.3048751 ], [ 150.9376672, -34.3049105 ], [ 150.9376605, -34.3049548 ], [ 150.937664500000011, -34.3049958 ], [ 150.937657800000011, -34.305059 ], [ 150.937631, -34.3050977 ], [ 150.937627, -34.3051409 ], [ 150.93761090000001, -34.3051853 ], [ 150.937593099999987, -34.3052429 ], [ 150.9376268, -34.3052409 ], [ 150.9376614, -34.3052283 ], [ 150.9377155, -34.3052388 ], [ 150.937774600000012, -34.305257 ], [ 150.937804199999988, -34.3052926 ], [ 150.93780484471057, -34.305294336250249 ] ] } }, +{ "type": "Feature", "properties": { "name": "Woonona Beach", "id": "way95786684" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.922206963333537, -34.34810765353312 ], [ 150.9220943, -34.3480778 ], [ 150.921986299999986, -34.3480216 ], [ 150.9215903, -34.3480514 ], [ 150.9214072, -34.3482799 ], [ 150.9212901, -34.3484469 ], [ 150.9211709, -34.3486929 ], [ 150.921000600000013, -34.3490199 ], [ 150.9208643, -34.3493345 ], [ 150.9207281, -34.3496614 ], [ 150.920600400000012, -34.3499813 ], [ 150.9204598, -34.3503785 ], [ 150.9203321, -34.3507318 ], [ 150.920242699999989, -34.3509849 ], [ 150.920138400000013, -34.3512643 ], [ 150.9200724, -34.3515227 ], [ 150.9199872, -34.3518285 ], [ 150.9199, -34.3521642 ], [ 150.9198127, -34.3524823 ], [ 150.919736, -34.3527706 ], [ 150.919657300000011, -34.3531309 ], [ 150.9195104, -34.3537513 ], [ 150.9194167, -34.3543242 ], [ 150.919342199999988, -34.3548269 ], [ 150.9192847, -34.3552364 ], [ 150.91925280000001, -34.3555316 ], [ 150.9192357, -34.3558445 ], [ 150.9192421, -34.3561046 ], [ 150.91925280000001, -34.3563735 ], [ 150.9192975, -34.3567566 ], [ 150.9193294, -34.3571239 ], [ 150.9193912, -34.3574701 ], [ 150.919461399999989, -34.3579183 ], [ 150.919499699999989, -34.3583664 ], [ 150.919539578097982, -34.358580300126626 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95786688" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.925357258552566, -34.375571246524217 ], [ 150.925322, -34.375561 ], [ 150.92479, -34.375504 ], [ 150.922465, -34.376762 ], [ 150.922069, -34.376963 ], [ 150.921697, -34.377213 ], [ 150.921565, -34.377356 ], [ 150.9214403, -34.3774809 ], [ 150.920643, -34.378175 ], [ 150.920448, -34.37841 ], [ 150.920222, -34.378493 ], [ 150.919836, -34.378828 ], [ 150.919163, -34.379731 ], [ 150.918379, -34.380474 ], [ 150.917455, -34.381515 ], [ 150.917105, -34.382061 ], [ 150.9163015, -34.3830936 ], [ 150.9161416, -34.3833934 ], [ 150.916023, -34.3836156 ], [ 150.9158605, -34.3841999 ], [ 150.9157212, -34.3848034 ], [ 150.91569, -34.385043 ], [ 150.915892113713397, -34.385083247752455 ] ] } }, +{ "type": "Feature", "properties": { "name": "Thirroul Beach", "id": "way95786690" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.931716823169666, -34.312094210075188 ], [ 150.931709899999987, -34.312099 ], [ 150.9316685, -34.3121475 ], [ 150.9315963, -34.3121835 ], [ 150.931554, -34.3122062 ], [ 150.931534699999986, -34.3122127 ], [ 150.9314277, -34.3122933 ], [ 150.931345599999986, -34.3123835 ], [ 150.931312, -34.3124367 ], [ 150.931266099999988, -34.3124727 ], [ 150.931211100000013, -34.3125109 ], [ 150.931166499999989, -34.3125295 ], [ 150.9311427, -34.312563 ], [ 150.9311293, -34.3126173 ], [ 150.9311011, -34.3126771 ], [ 150.931056899999987, -34.3127225 ], [ 150.9310327, -34.31281 ], [ 150.930959, -34.3129163 ], [ 150.930896, -34.3130127 ], [ 150.930846300000013, -34.313067 ], [ 150.9307511, -34.3130936 ], [ 150.930678699999987, -34.3131844 ], [ 150.930637100000013, -34.3132852 ], [ 150.9306009, -34.3133616 ], [ 150.930509699999988, -34.313437 ], [ 150.9304467, -34.3134935 ], [ 150.9303635, -34.3135477 ], [ 150.9302777, -34.3136009 ], [ 150.930198600000011, -34.3136796 ], [ 150.9301208, -34.3137338 ], [ 150.9300403, -34.3137815 ], [ 150.9300055, -34.3138335 ], [ 150.9299612, -34.3139144 ], [ 150.929875399999986, -34.3139753 ], [ 150.9298043, -34.3140418 ], [ 150.9297614, -34.3141459 ], [ 150.929697, -34.3142168 ], [ 150.929642, -34.3142467 ], [ 150.9296139, -34.314281 ], [ 150.9296058, -34.3143375 ], [ 150.9295736, -34.3144372 ], [ 150.929530699999987, -34.314517 ], [ 150.929470400000014, -34.314599 ], [ 150.9294409, -34.3146975 ], [ 150.92940870000001, -34.3147596 ], [ 150.9293658, -34.3148338 ], [ 150.9293161, -34.3149722 ], [ 150.9292518, -34.3150354 ], [ 150.92919280000001, -34.315073 ], [ 150.9291713, -34.3150952 ], [ 150.9291565, -34.3151495 ], [ 150.9291364, -34.3152281 ], [ 150.9291069, -34.3152569 ], [ 150.9290318, -34.3152924 ], [ 150.9289889, -34.3153322 ], [ 150.928929900000014, -34.3154098 ], [ 150.9287354, -34.3156014 ], [ 150.9286214, -34.3157044 ], [ 150.9285705, -34.3157687 ], [ 150.9285128, -34.3158263 ], [ 150.9284323, -34.3159536 ], [ 150.928317, -34.3160655 ], [ 150.928193599999986, -34.3162649 ], [ 150.92806490000001, -34.3164698 ], [ 150.927944200000013, -34.3166116 ], [ 150.9278356, -34.3167678 ], [ 150.9277299, -34.3170073 ], [ 150.927636299999989, -34.3171427 ], [ 150.9275639, -34.3172799 ], [ 150.9273916, -34.3173637 ], [ 150.92734, -34.3174407 ], [ 150.9273139, -34.3175941 ], [ 150.9272522, -34.317727 ], [ 150.9271972, -34.3178261 ], [ 150.9271422, -34.3179231 ], [ 150.9271047, -34.3180172 ], [ 150.9270852, -34.3180903 ], [ 150.9270309, -34.3182991 ], [ 150.926969899999989, -34.3184103 ], [ 150.926941699999986, -34.3184614 ], [ 150.9268418, -34.3186674 ], [ 150.926752599999986, -34.3188419 ], [ 150.926675499999988, -34.3190042 ], [ 150.9266711, -34.3190135 ], [ 150.9266453, -34.3190501 ], [ 150.9265689, -34.3191365 ], [ 150.926543811335421, -34.319178116433868 ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandon Point Beach", "id": "way95786692" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.926118323413704, -34.332827148128764 ], [ 150.926062, -34.3329017 ], [ 150.925974700000012, -34.3329527 ], [ 150.9258816, -34.3329337 ], [ 150.92572770000001, -34.3331575 ], [ 150.9256777, -34.333256 ], [ 150.9256532, -34.3332788 ], [ 150.925617, -34.3333078 ], [ 150.9255957, -34.3333649 ], [ 150.9256106, -34.3334089 ], [ 150.925593600000013, -34.3334862 ], [ 150.9255106, -34.3337077 ], [ 150.925434, -34.333953 ], [ 150.925388199999986, -34.3341551 ], [ 150.9253956, -34.3342202 ], [ 150.9253286, -34.3344259 ], [ 150.9252392, -34.3347511 ], [ 150.9251966, -34.3348847 ], [ 150.9251487, -34.3351018 ], [ 150.9250869, -34.3353936 ], [ 150.9250614, -34.3358981 ], [ 150.925113, -34.336266 ], [ 150.925145, -34.3366036 ], [ 150.925181, -34.336984 ], [ 150.9251945, -34.3373941 ], [ 150.9252679, -34.3377984 ], [ 150.9252988, -34.3379153 ], [ 150.9254041, -34.3381746 ], [ 150.925456, -34.3381995 ], [ 150.925701, -34.3383334 ], [ 150.9258221, -34.3384232 ], [ 150.926001543355909, -34.338556272442084 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bulli Beach", "id": "way95786693" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.926478889531126, -34.339774014914013 ], [ 150.926301599999988, -34.3396482 ], [ 150.9259567, -34.3397852 ], [ 150.9255785, -34.3400055 ], [ 150.925209700000011, -34.3403422 ], [ 150.924940099999986, -34.3407298 ], [ 150.9248033, -34.3409246 ], [ 150.924675900000011, -34.3411306 ], [ 150.9244788, -34.341413 ], [ 150.924317800000011, -34.3416079 ], [ 150.924150200000014, -34.3418448 ], [ 150.9239987, -34.3421062 ], [ 150.9238739, -34.3423387 ], [ 150.9237009, -34.342631 ], [ 150.9236084, -34.3427916 ], [ 150.9235306, -34.3429887 ], [ 150.9234247, -34.3433198 ], [ 150.923326800000012, -34.3435712 ], [ 150.9232141, -34.3438712 ], [ 150.9230961, -34.3441215 ], [ 150.9229968, -34.3443917 ], [ 150.9229231, -34.3447072 ], [ 150.92275810000001, -34.3451745 ], [ 150.922652199999987, -34.3455698 ], [ 150.9225999, -34.3458478 ], [ 150.9226026, -34.3461013 ], [ 150.9226629, -34.3463394 ], [ 150.922759500000012, -34.3465276 ], [ 150.922897799999987, -34.3466843 ], [ 150.9230196, -34.3466716 ], [ 150.9231752, -34.3466782 ], [ 150.92318103086032, -34.346682323509917 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95786711" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.969281112780749, -34.261760980348853 ], [ 150.969200300000011, -34.2617891 ], [ 150.9690917, -34.2618674 ], [ 150.968932099999989, -34.2619826 ], [ 150.96868090000001, -34.2621322 ], [ 150.968593, -34.26219 ], [ 150.968575, -34.262213 ], [ 150.968534, -34.2622641 ], [ 150.9684765, -34.2622923 ], [ 150.9684148, -34.2623257 ], [ 150.9682338, -34.2624067 ], [ 150.9681253, -34.2624682 ], [ 150.9680742, -34.2625122 ], [ 150.9680124, -34.2625844 ], [ 150.967955, -34.2627022 ], [ 150.9678868, -34.2628958 ], [ 150.967831499999988, -34.2630858 ], [ 150.967829143110009, -34.263105235135683 ] ] } }, +{ "type": "Feature", "properties": { "name": "Coledale Beach", "id": "way95786712" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.950495968364208, -34.285924001085235 ], [ 150.9504761, -34.2859569 ], [ 150.9504492, -34.2860019 ], [ 150.9503939, -34.2860107 ], [ 150.950348100000014, -34.2860247 ], [ 150.9503119, -34.2860404 ], [ 150.9500959, -34.2861728 ], [ 150.9499746, -34.2862104 ], [ 150.9497723, -34.2864319 ], [ 150.949636, -34.2867169 ], [ 150.9495147, -34.2869456 ], [ 150.9493976, -34.2870792 ], [ 150.9492677, -34.2872428 ], [ 150.94913360000001, -34.2874767 ], [ 150.9490442, -34.2876949 ], [ 150.9489931, -34.287869 ], [ 150.9489292, -34.2880888 ], [ 150.948793, -34.2883245 ], [ 150.9487674, -34.2885215 ], [ 150.948776, -34.288664 ], [ 150.9488121, -34.2888118 ], [ 150.9489016, -34.2889595 ], [ 150.9491059, -34.2890387 ], [ 150.94914, -34.2892075 ], [ 150.9491442, -34.2893236 ], [ 150.9490442, -34.2894151 ], [ 150.948952600000013, -34.289475 ], [ 150.948279899999989, -34.2897352 ], [ 150.9482012, -34.2897774 ], [ 150.9481479, -34.289802 ], [ 150.9480287, -34.289853 ], [ 150.9479265, -34.2899005 ], [ 150.9478691, -34.2899357 ], [ 150.9478286, -34.2899691 ], [ 150.9477839, -34.2900043 ], [ 150.947732800000011, -34.2900201 ], [ 150.9475625, -34.2901151 ], [ 150.9474454, -34.2901854 ], [ 150.9472389, -34.2902875 ], [ 150.9470665, -34.290495 ], [ 150.9470047, -34.2906287 ], [ 150.946974899999987, -34.2907008 ], [ 150.9469451, -34.2907659 ], [ 150.946913200000012, -34.2908679 ], [ 150.9468429, -34.2910174 ], [ 150.9468063, -34.291073 ], [ 150.9467769, -34.2911423 ], [ 150.9466152, -34.2913498 ], [ 150.9465151, -34.2914201 ], [ 150.946485845775214, -34.291451984474776 ] ] } }, +{ "type": "Feature", "properties": { "name": "Austinmer Beach", "id": "way95786715" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.93738609001926, -34.305525456004176 ], [ 150.9372153, -34.305391 ], [ 150.9371199, -34.3054593 ], [ 150.937096200000013, -34.3054789 ], [ 150.9370844, -34.3054914 ], [ 150.9370481, -34.3055445 ], [ 150.9369906, -34.3056157 ], [ 150.9369695, -34.3056387 ], [ 150.9369484, -34.3056589 ], [ 150.936927200000014, -34.3056785 ], [ 150.9369078, -34.3056903 ], [ 150.9368901, -34.3057043 ], [ 150.9368732, -34.3057148 ], [ 150.9368436, -34.3057238 ], [ 150.936809, -34.305735 ], [ 150.936765900000012, -34.3057462 ], [ 150.936690700000014, -34.3057594 ], [ 150.9366341, -34.305765 ], [ 150.936558, -34.3057685 ], [ 150.9365243, -34.305772 ], [ 150.9364905, -34.3057727 ], [ 150.936457499999989, -34.3057804 ], [ 150.9364077, -34.3057915 ], [ 150.9363739, -34.3058104 ], [ 150.9362978, -34.305839 ], [ 150.9362547, -34.3058488 ], [ 150.9361863, -34.3058641 ], [ 150.9361424, -34.3059241 ], [ 150.9360452, -34.3060016 ], [ 150.9359438, -34.3060539 ], [ 150.9359033, -34.3061 ], [ 150.935889800000012, -34.3061328 ], [ 150.9358551, -34.3061754 ], [ 150.935800199999989, -34.3062019 ], [ 150.9357369, -34.3062368 ], [ 150.9356955, -34.3062926 ], [ 150.9356414, -34.3063729 ], [ 150.9354927, -34.3065766 ], [ 150.935325400000011, -34.3068028 ], [ 150.935229099999987, -34.3069312 ], [ 150.9351379, -34.3071014 ], [ 150.935095600000011, -34.3071894 ], [ 150.9350753, -34.3073108 ], [ 150.9350618, -34.3074073 ], [ 150.9350586, -34.3074724 ], [ 150.935059599999988, -34.3075603 ], [ 150.9350703, -34.3076702 ], [ 150.935283728260629, -34.307711856163422 ] ] } }, +{ "type": "Feature", "properties": { "name": "McCauleys Beach", "id": "way95786716" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.925735483452684, -34.320951020183479 ], [ 150.925724699999989, -34.3209746 ], [ 150.9256911, -34.3210311 ], [ 150.9256428, -34.3210543 ], [ 150.92561520000001, -34.3211322 ], [ 150.9255345, -34.3212299 ], [ 150.925468599999988, -34.3213346 ], [ 150.925418799999989, -34.3215746 ], [ 150.9253977, -34.3216765 ], [ 150.9253436, -34.3220463 ], [ 150.9253081, -34.3221663 ], [ 150.925227, -34.3224154 ], [ 150.9252017, -34.3225556 ], [ 150.9250347, -34.3231846 ], [ 150.9248567, -34.3237844 ], [ 150.9247876, -34.3240158 ], [ 150.9247078, -34.3242833 ], [ 150.9246398, -34.3244793 ], [ 150.9246161, -34.324561 ], [ 150.9245368, -34.3248225 ], [ 150.9244222, -34.3257721 ], [ 150.924412499999988, -34.3260601 ], [ 150.9244367, -34.3264059 ], [ 150.9244493, -34.3268374 ], [ 150.9245196, -34.3272119 ], [ 150.9246197, -34.3276531 ], [ 150.924745800000011, -34.3279378 ], [ 150.9248596, -34.3281283 ], [ 150.925055, -34.3283089 ], [ 150.9251587, -34.3282335 ], [ 150.9252593, -34.3281959 ], [ 150.9253693, -34.3282955 ], [ 150.9254645, -34.3284008 ], [ 150.9255852, -34.3284572 ], [ 150.9257515, -34.3285492 ], [ 150.9258118, -34.3286511 ], [ 150.9258132, -34.3287441 ], [ 150.9258078, -34.3287906 ], [ 150.925810500000011, -34.3288803 ], [ 150.925919099999987, -34.3289623 ], [ 150.925945999772665, -34.328964873021732 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95786723" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.933950861539273, -34.30918767704636 ], [ 150.9339162, -34.3092215 ], [ 150.9338605, -34.309255 ], [ 150.933825, -34.3092773 ], [ 150.9337946, -34.3092969 ], [ 150.933771900000011, -34.3093109 ], [ 150.93372020000001, -34.3093429 ], [ 150.9336256, -34.3093848 ], [ 150.9335462, -34.3094658 ], [ 150.933480300000014, -34.3095202 ], [ 150.9334313, -34.3095649 ], [ 150.9334026, -34.3096319 ], [ 150.933314700000011, -34.3097812 ], [ 150.9332775, -34.3098482 ], [ 150.933239500000013, -34.3099545 ], [ 150.933192600000012, -34.3100584 ], [ 150.9331403, -34.3101703 ], [ 150.9331135, -34.3102788 ], [ 150.9331043, -34.3103032 ], [ 150.9331009, -34.3103346 ], [ 150.933095, -34.3103653 ], [ 150.933089099999989, -34.3103932 ], [ 150.9330807, -34.3104218 ], [ 150.933063800000014, -34.3104553 ], [ 150.9330486, -34.3104979 ], [ 150.9329787, -34.3106174 ], [ 150.9329584, -34.3106779 ], [ 150.9329457, -34.3107185 ], [ 150.9329435, -34.3107704 ], [ 150.9329457, -34.3108047 ], [ 150.9329318, -34.310853 ], [ 150.9329105, -34.3109058 ], [ 150.9328903, -34.3109374 ], [ 150.9328897, -34.3109731 ], [ 150.932873300000011, -34.3110051 ], [ 150.93283120000001, -34.3110342 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95786726" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.926765898798266, -34.318815883853148 ], [ 150.926752599999986, -34.3188419 ], [ 150.926675499999988, -34.3190042 ], [ 150.9266711, -34.3190135 ], [ 150.9266453, -34.3190501 ], [ 150.9265689, -34.3191365 ], [ 150.9264971, -34.3192556 ], [ 150.926451500000013, -34.3193492 ], [ 150.9264133, -34.3194145 ], [ 150.926391200000012, -34.3194538 ], [ 150.926369099999988, -34.3195064 ], [ 150.926332800000012, -34.3195801 ], [ 150.9263067, -34.3196992 ], [ 150.9263027, -34.3197784 ], [ 150.926319400000011, -34.3198221 ], [ 150.9263563, -34.3198504 ], [ 150.9263536, -34.3198742 ], [ 150.9263764, -34.319888 ], [ 150.9264267, -34.3199179 ], [ 150.926444800000013, -34.3199401 ], [ 150.9264455, -34.3199639 ], [ 150.9264059, -34.3199617 ], [ 150.9263798, -34.3199755 ], [ 150.9263905, -34.3199971 ], [ 150.92640661640516, -34.320022113244192 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95786729" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.965294725468169, -34.267725245274683 ], [ 150.965240599999987, -34.2677446 ], [ 150.965040499999986, -34.2678273 ], [ 150.9648702, -34.2679083 ], [ 150.964797800000014, -34.2679434 ], [ 150.9646658, -34.2680173 ], [ 150.964453, -34.2681159 ], [ 150.9642869, -34.2681845 ], [ 150.9641294, -34.2682478 ], [ 150.9639867, -34.268334 ], [ 150.9638271, -34.2684677 ], [ 150.963686599999988, -34.2686331 ], [ 150.9635801, -34.2687809 ], [ 150.9634907, -34.2689357 ], [ 150.963446, -34.2690536 ], [ 150.9633928, -34.2691451 ], [ 150.9633843, -34.2692876 ], [ 150.9633608, -34.2693439 ], [ 150.9634268, -34.2694072 ], [ 150.9634992, -34.2694899 ], [ 150.963510575335249, -34.269528202886647 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way99463321" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.140076172942116, -33.999920086983899 ], [ 151.1400681, -33.9999473 ], [ 151.1401899, -33.9999785 ], [ 151.140161, -34.0001512 ], [ 151.1400482, -34.0001349 ], [ 151.1399798, -34.0004798 ], [ 151.1399341, -34.0007101 ], [ 151.1399175, -34.0009364 ], [ 151.1398145, -34.0023384 ], [ 151.1394976, -34.0033005 ], [ 151.1392279, -34.003514 ], [ 151.138846199999989, -34.0035988 ], [ 151.137739399999987, -34.003581 ], [ 151.137134300000014, -34.0036759 ], [ 151.136551200000014, -34.0037355 ], [ 151.1363058, -34.0036349 ], [ 151.136274, -34.0036414 ], [ 151.1362053, -34.0036519 ], [ 151.13609352715676, -34.003677539648628 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way99463322" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.136278112998326, -34.003640559292791 ], [ 151.136274, -34.0036414 ], [ 151.1362053, -34.0036519 ], [ 151.136065800000011, -34.0036839 ], [ 151.1353562, -34.0039292 ], [ 151.1348955, -34.0040747 ], [ 151.1342644, -34.0043063 ], [ 151.1338462, -34.0044321 ], [ 151.1332681, -34.0045475 ], [ 151.132970699999987, -34.004662 ], [ 151.1311954, -34.0049403 ], [ 151.1308655, -34.0050506 ], [ 151.130661667846255, -34.00512376311643 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way99463328" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.130504943239515, -34.005180017541633 ], [ 151.1303005, -34.0052534 ], [ 151.1291578, -34.0054762 ], [ 151.128943600000014, -34.0055697 ], [ 151.128862570291091, -34.005770653678084 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way100114872" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.902640598541353, -34.411890473642707 ], [ 150.902417, -34.412076 ], [ 150.902362, -34.412325 ], [ 150.902353799999986, -34.4123813 ], [ 150.902286, -34.41312 ], [ 150.902177, -34.413548 ], [ 150.902156, -34.413826 ], [ 150.902084, -34.414168 ], [ 150.902072, -34.414939 ], [ 150.902042, -34.4152345 ], [ 150.902287, -34.4156 ], [ 150.902389172960966, -34.415830663199706 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way100421203" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.908026567073222, -34.422892638486992 ], [ 150.907775, -34.42285 ], [ 150.907661, -34.422924 ], [ 150.9072127, -34.4233948 ], [ 150.9070509, -34.4236229 ], [ 150.906627899999989, -34.4239731 ], [ 150.905736100000013, -34.4256888 ], [ 150.905579499999988, -34.4259987 ], [ 150.905375, -34.426479 ], [ 150.905044, -34.427071 ], [ 150.904938, -34.427389 ], [ 150.90452, -34.428137 ], [ 150.904076, -34.42905 ], [ 150.90387, -34.429436 ], [ 150.902859, -34.431626 ], [ 150.90261, -34.432385 ], [ 150.902474, -34.43299 ], [ 150.902392, -34.433215 ], [ 150.902349, -34.433613 ], [ 150.902276, -34.433938 ], [ 150.902075, -34.434524 ], [ 150.902099, -34.434887 ], [ 150.902151, -34.435207 ], [ 150.902007, -34.435721 ], [ 150.901689, -34.436658 ], [ 150.901551, -34.4369 ], [ 150.901586, -34.437254 ], [ 150.901616, -34.43739 ], [ 150.901534, -34.437606 ], [ 150.901508, -34.437769 ], [ 150.901395, -34.43832 ], [ 150.900742, -34.44103 ], [ 150.900448, -34.442275 ], [ 150.900163, -34.443149 ], [ 150.900146, -34.443321 ], [ 150.899956, -34.445784 ], [ 150.900097076973026, -34.446357180657749 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way104740406" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.157591139053977, -34.004858314352219 ], [ 151.1575776, -34.0048622 ], [ 151.157205299999987, -34.0049916 ], [ 151.156941100000012, -34.0051558 ], [ 151.1568968, -34.005311 ], [ 151.156917099999987, -34.0055789 ], [ 151.157211600000011, -34.0057695 ], [ 151.157237, -34.0059827 ], [ 151.157211600000011, -34.0060859 ], [ 151.1571633, -34.0062102 ], [ 151.157054, -34.0062734 ], [ 151.1569448, -34.0063029 ], [ 151.1567009, -34.006305 ], [ 151.156584, -34.0062629 ], [ 151.156416299999989, -34.0062249 ], [ 151.1562664, -34.0062418 ], [ 151.1561394, -34.0063008 ], [ 151.156004700000011, -34.0063597 ], [ 151.155905600000011, -34.006345 ], [ 151.155776, -34.0063176 ], [ 151.1556846, -34.0063597 ], [ 151.1556185, -34.0063218 ], [ 151.1556261, -34.006166 ], [ 151.1556388, -34.0060227 ], [ 151.1556617, -34.0058648 ], [ 151.1558418, -34.0056487 ], [ 151.1560215, -34.0055272 ], [ 151.1561925, -34.0053757 ], [ 151.156388600000014, -34.0052451 ], [ 151.1565663, -34.0051173 ], [ 151.1569853, -34.0048616 ], [ 151.1572066, -34.0046809 ], [ 151.1573725, -34.0045197 ], [ 151.15751, -34.0044127 ], [ 151.1577782, -34.0042376 ], [ 151.158063199999987, -34.0041251 ], [ 151.1585761, -34.0039569 ], [ 151.1590069, -34.0038319 ], [ 151.1593522, -34.0036762 ], [ 151.1598057, -34.0033799 ], [ 151.1600771, -34.0032106 ], [ 151.1603714, -34.002962 ], [ 151.1605122, -34.0028035 ], [ 151.1606899, -34.0025326 ], [ 151.1608458, -34.0022616 ], [ 151.161031799999989, -34.001967 ], [ 151.161295, -34.0014264 ], [ 151.1614408, -34.0010276 ], [ 151.1615052, -34.0005949 ], [ 151.1615936, -34.0002575 ], [ 151.1618104, -34.0000668 ], [ 151.1620515, -33.9999155 ], [ 151.1622854, -33.9998622 ], [ 151.1625329, -33.9998637 ], [ 151.1628795, -33.99998 ], [ 151.1631458, -34.0001635 ], [ 151.1637993, -34.0004409 ], [ 151.164394499999986, -34.0008343 ], [ 151.1652161, -34.0014079 ], [ 151.1655606, -34.0015661 ], [ 151.165852300000012, -34.0016784 ], [ 151.1661796, -34.0018808 ], [ 151.1667362, -34.0023311 ], [ 151.1673396, -34.0027785 ], [ 151.1677989, -34.0031454 ], [ 151.1682683, -34.0034178 ], [ 151.16881810000001, -34.0037346 ], [ 151.1693125, -34.0040655 ], [ 151.169692199999986, -34.0043004 ], [ 151.1707223, -34.0050464 ], [ 151.1714833, -34.0056356 ], [ 151.1719326, -34.0060108 ], [ 151.1726435, -34.0065658 ], [ 151.172824970025118, -34.00668399823379 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way104748689" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.909768273348476, -34.493193270369595 ], [ 150.909704, -34.492985 ], [ 150.90884, -34.49317 ], [ 150.908338, -34.493394 ], [ 150.906507, -34.494314 ], [ 150.90614, -34.494672 ], [ 150.905654, -34.494863 ], [ 150.905381, -34.495046 ], [ 150.905008, -34.495338 ], [ 150.90483, -34.495515 ], [ 150.904121, -34.495936 ], [ 150.90371, -34.496121 ], [ 150.90319, -34.496522 ], [ 150.902655, -34.496994 ], [ 150.902239, -34.497359 ], [ 150.900552, -34.498426 ], [ 150.899082, -34.499784 ], [ 150.898402, -34.500283 ], [ 150.896829, -34.501594 ], [ 150.895916, -34.502194 ], [ 150.895182, -34.502797 ], [ 150.894682, -34.503539 ], [ 150.894241, -34.503882 ], [ 150.892917, -34.504956 ], [ 150.892113, -34.505956 ], [ 150.891708, -34.506123 ], [ 150.891364, -34.506365 ], [ 150.891218, -34.506549 ], [ 150.890836, -34.507218 ], [ 150.890321, -34.507528 ], [ 150.890103, -34.507967 ], [ 150.889892, -34.508142 ], [ 150.889536, -34.508313 ], [ 150.889381, -34.508505 ], [ 150.888803, -34.509421 ], [ 150.88878, -34.509553 ], [ 150.888578, -34.509736 ], [ 150.888451, -34.50974 ], [ 150.888289, -34.509815 ], [ 150.886806, -34.511541 ], [ 150.886725, -34.511725 ], [ 150.886173, -34.512213 ], [ 150.882912, -34.517198 ], [ 150.8827469, -34.5174609 ], [ 150.882234, -34.5181334 ], [ 150.881504400000011, -34.5193003 ], [ 150.8804101, -34.5210992 ], [ 150.8798736, -34.522045 ], [ 150.8793211, -34.5228892 ], [ 150.878908, -34.5235698 ], [ 150.878672, -34.5240869 ], [ 150.8782321, -34.5248073 ], [ 150.877872700000012, -34.5254393 ], [ 150.877577699999989, -34.5261111 ], [ 150.877298700000011, -34.5267166 ], [ 150.876719400000013, -34.5280203 ], [ 150.8763385, -34.528754 ], [ 150.876081, -34.5294787 ], [ 150.875845, -34.5301196 ], [ 150.8756196, -34.5310653 ], [ 150.8754265, -34.5318298 ], [ 150.875179800000012, -34.5325723 ], [ 150.8750564, -34.5332749 ], [ 150.8748579, -34.5341676 ], [ 150.8747506, -34.5348216 ], [ 150.8745575, -34.5357761 ], [ 150.874477, -34.5364257 ], [ 150.874418, -34.5370135 ], [ 150.8744019, -34.5376675 ], [ 150.874419, -34.5385668 ], [ 150.8745515, -34.5404067 ], [ 150.875055, -34.5422885 ], [ 150.8752495, -34.5423095 ], [ 150.875271808363038, -34.542309105055807 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way105577372" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.198735494855129, -33.957846586448682 ], [ 151.1986793, -33.9576376 ], [ 151.19812970000001, -33.9570161 ], [ 151.1976544, -33.9571375 ], [ 151.1972348, -33.9569482 ], [ 151.197213799999986, -33.95665 ], [ 151.197071200000011, -33.9564824 ], [ 151.1963829, -33.956135 ], [ 151.1960095, -33.955938 ], [ 151.195572199999987, -33.955684 ], [ 151.1950574, -33.9554363 ], [ 151.1947767, -33.955256 ], [ 151.1941309, -33.9550861 ], [ 151.1937397, -33.9550759 ], [ 151.1937151, -33.9551165 ], [ 151.1935935, -33.9551338 ], [ 151.1935439, -33.9550554 ], [ 151.193603700000011, -33.9549306 ], [ 151.1937216, -33.9548057 ], [ 151.19336340000001, -33.9545871 ], [ 151.192703599999987, -33.954385 ], [ 151.1925067, -33.9543011 ], [ 151.1926449, -33.9535843 ], [ 151.192519271293463, -33.953407867266485 ] ] } }, +{ "type": "Feature", "properties": { "name": "Racecourse Beach", "id": "way109973381" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.397769848720145, -35.532650464109196 ], [ 150.397554, -35.532604 ], [ 150.397356, -35.532599 ], [ 150.3971028, -35.5326663 ], [ 150.395576, -35.533534 ], [ 150.394616, -35.53422 ], [ 150.393021, -35.535632 ], [ 150.392462, -35.53628 ], [ 150.39128, -35.538097 ], [ 150.390856, -35.538958 ], [ 150.390555, -35.53988 ], [ 150.390411, -35.541527 ], [ 150.390447254076264, -35.541744524457528 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nine Mile Beach", "id": "way133342568" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.545445436415463, -32.076687602716241 ], [ 152.5453243, -32.0766929 ], [ 152.5452411, -32.0766315 ], [ 152.5449863, -32.0767611 ], [ 152.544731500000012, -32.0769815 ], [ 152.5445384, -32.0772793 ], [ 152.544406900000013, -32.0777497 ], [ 152.544326500000011, -32.0781406 ], [ 152.5442648, -32.0785861 ], [ 152.5442433, -32.0791838 ], [ 152.5442648, -32.0794633 ], [ 152.5442702, -32.0798542 ], [ 152.544192399999986, -32.0799951 ], [ 152.5440314, -32.0801201 ], [ 152.543685399999987, -32.0802678 ], [ 152.5429907, -32.0804292 ], [ 152.542347, -32.0805747 ], [ 152.5417368, -32.0807839 ], [ 152.5408557, -32.081236 ], [ 152.5396058, -32.0819223 ], [ 152.537621, -32.0828791 ], [ 152.5372347, -32.08307 ], [ 152.5368109, -32.0833609 ], [ 152.5360921, -32.0838949 ], [ 152.535646899999989, -32.0842653 ], [ 152.534989700000011, -32.0849676 ], [ 152.533536, -32.0862379 ], [ 152.5329298, -32.086806 ], [ 152.531615499999987, -32.0880786 ], [ 152.5304031, -32.0892557 ], [ 152.529319500000014, -32.0903056 ], [ 152.5281769, -32.0916599 ], [ 152.527205900000013, -32.0927597 ], [ 152.5266212, -32.0934914 ], [ 152.5255805, -32.094614 ], [ 152.5249153, -32.0954502 ], [ 152.5242609, -32.0962863 ], [ 152.523568899999987, -32.0971316 ], [ 152.522276, -32.0989267 ], [ 152.5207633, -32.1012034 ], [ 152.5196582, -32.1029529 ], [ 152.5186229, -32.1047933 ], [ 152.5181079, -32.1057157 ], [ 152.51674, -32.1085057 ], [ 152.5158066, -32.110296 ], [ 152.515028699999988, -32.1120271 ], [ 152.513811, -32.1148624 ], [ 152.5135052, -32.1155257 ], [ 152.512550299999987, -32.118061 ], [ 152.5122821, -32.1186471 ], [ 152.5118047, -32.119942 ], [ 152.5110966, -32.1219592 ], [ 152.510404599999987, -32.1240445 ], [ 152.5097769, -32.1260571 ], [ 152.509363900000011, -32.1274972 ], [ 152.5089079, -32.1292008 ], [ 152.5082856, -32.1314177 ], [ 152.5075507, -32.1346384 ], [ 152.5070981, -32.1369727 ], [ 152.5067147, -32.138884 ], [ 152.5063217, -32.1414299 ], [ 152.5060394, -32.1432676 ], [ 152.505807299999987, -32.1449859 ], [ 152.5056309, -32.1475852 ], [ 152.5054729, -32.1504553 ], [ 152.5053993, -32.1530395 ], [ 152.5053084, -32.1543784 ], [ 152.505303, -32.1557182 ], [ 152.505469299999987, -32.1584703 ], [ 152.5055873, -32.1601597 ], [ 152.5058448, -32.1619535 ], [ 152.5061077, -32.1637382 ], [ 152.5063604, -32.1648075 ], [ 152.5069172, -32.1674485 ], [ 152.5074075, -32.1684869 ], [ 152.507700199999988, -32.1694099 ], [ 152.5077894, -32.1701523 ], [ 152.5077814, -32.1707017 ], [ 152.5078733, -32.1714302 ], [ 152.5080667, -32.1719385 ], [ 152.5083902, -32.1724135 ], [ 152.5090668, -32.1730851 ], [ 152.509575399999989, -32.1734261 ], [ 152.509753732012371, -32.173311508882506 ] ] } }, +{ "type": "Feature", "properties": { "name": "Forster Main Beach", "id": "way134621769" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.510919038395116, -32.174184194933922 ], [ 152.510737, -32.1742931 ], [ 152.5108486, -32.1745872 ], [ 152.5110032, -32.1749768 ], [ 152.511112, -32.1754295 ], [ 152.511227600000012, -32.1756079 ], [ 152.511413800000014, -32.1757196 ], [ 152.51146030000001, -32.1759306 ], [ 152.5117194, -32.1763766 ], [ 152.5119027, -32.1766821 ], [ 152.512103200000013, -32.1769858 ], [ 152.5124088, -32.1773753 ], [ 152.512643700000012, -32.1776408 ], [ 152.512842299999988, -32.1778394 ], [ 152.51312870000001, -32.1780953 ], [ 152.5134553, -32.1782614 ], [ 152.513856299999986, -32.1784027 ], [ 152.514045399999986, -32.1784218 ], [ 152.5143385, -32.1783939 ], [ 152.514372864066445, -32.178184537666738 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pebbly Beach", "id": "way134621770" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.517752919435253, -32.178276565089895 ], [ 152.5177864, -32.1782939 ], [ 152.517862799999989, -32.1783875 ], [ 152.5179392, -32.1785249 ], [ 152.5179144, -32.1786472 ], [ 152.5179315, -32.1787293 ], [ 152.5181263, -32.1790329 ], [ 152.5184185, -32.1792602 ], [ 152.518693500000012, -32.179369 ], [ 152.518857700000012, -32.17939 ], [ 152.519164016270935, -32.179420718215354 ] ] } }, +{ "type": "Feature", "properties": { "name": "One Mile Beach", "id": "way134627391" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.537042322747538, -32.184634047133578 ], [ 152.5369868, -32.1846184 ], [ 152.536981, -32.1846795 ], [ 152.5368302, -32.1846337 ], [ 152.53656860000001, -32.1847387 ], [ 152.536385200000012, -32.1850672 ], [ 152.5362726, -32.1856153 ], [ 152.5362153, -32.1865606 ], [ 152.536175500000013, -32.1872629 ], [ 152.5361328, -32.1880283 ], [ 152.5361786, -32.1890153 ], [ 152.5362, -32.1895897 ], [ 152.5362244, -32.1903352 ], [ 152.5362978, -32.190679 ], [ 152.536504, -32.1913924 ], [ 152.536585, -32.1919424 ], [ 152.5367301, -32.1925245 ], [ 152.53696690000001, -32.1931447 ], [ 152.5371609, -32.193765 ], [ 152.5372495, -32.1940599 ], [ 152.537414500000011, -32.1944785 ], [ 152.5375383, -32.1947565 ], [ 152.5376559, -32.1949597 ], [ 152.5378637, -32.1952271 ], [ 152.537992, -32.1953584 ], [ 152.5382621, -32.1955213 ], [ 152.5383981, -32.1955476 ], [ 152.5386082, -32.1955842 ], [ 152.538686155713606, -32.195600780474926 ] ] } }, +{ "type": "Feature", "properties": { "name": "Merewether Beach", "id": "way148276792" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.759308003168456, -32.947220099780729 ], [ 151.759132599999987, -32.9473426 ], [ 151.7578775, -32.9482978 ], [ 151.7572333, -32.9490308 ], [ 151.7571667, -32.9498417 ], [ 151.7569112, -32.9500194 ], [ 151.756919962476928, -32.950233235871963 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wattamolla Beach", "id": "way149673674" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.11890841403158, -34.136967530048082 ], [ 151.118778, -34.1369578 ], [ 151.118696, -34.137011 ], [ 151.118486, -34.137209 ], [ 151.118253, -34.137592 ], [ 151.118244, -34.137626 ], [ 151.118179, -34.137849 ], [ 151.118177, -34.137963 ], [ 151.118193, -34.138007 ], [ 151.118192, -34.138064 ], [ 151.118258, -34.138194 ], [ 151.118359, -34.138295 ], [ 151.1185346010584, -34.138422159387119 ] ] } }, +{ "type": "Feature", "properties": { "name": "Lighthouse Beach", "id": "way159040990" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.537724182087658, -32.442573351008605 ], [ 152.5371892, -32.4427359 ], [ 152.5348194, -32.442664 ], [ 152.5311766, -32.4431591 ], [ 152.5244253, -32.4452248 ], [ 152.521309699999989, -32.446659 ], [ 152.5205446, -32.4473539 ], [ 152.5198925, -32.4478883 ], [ 152.519782774417934, -32.448093192978781 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bateau Bay Beach", "id": "way159095196" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.486515315835902, -33.382964953938817 ], [ 151.4864872, -33.3829636 ], [ 151.486308, -33.3829083 ], [ 151.485987599999987, -33.3827746 ], [ 151.485539100000011, -33.3827912 ], [ 151.484991400000013, -33.3828541 ], [ 151.4843722, -33.3830695 ], [ 151.4839079, -33.3833347 ], [ 151.4835388, -33.3836263 ], [ 151.4832728, -33.3841168 ], [ 151.483229200000011, -33.3846271 ], [ 151.483352200000013, -33.3852104 ], [ 151.4832213, -33.3853927 ], [ 151.4832388, -33.3855304 ], [ 151.4831991, -33.3856729 ], [ 151.48319881884251, -33.385741651278003 ] ] } }, +{ "type": "Feature", "properties": { "name": "Forrester's beach", "id": "way159095198" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.473867160650542, -33.407621747559489 ], [ 151.473654399999987, -33.4076537 ], [ 151.4732727, -33.4078879 ], [ 151.472837700000014, -33.408148 ], [ 151.4722483, -33.4083284 ], [ 151.4714373, -33.4087032 ], [ 151.4709265, -33.4089586 ], [ 151.4706318, -33.4091952 ], [ 151.4701379, -33.4093709 ], [ 151.4694026, -33.4095395 ], [ 151.468846899999988, -33.4097949 ], [ 151.4681874, -33.41024 ], [ 151.4672304, -33.4108796 ], [ 151.4666523, -33.411238 ], [ 151.465995600000014, -33.412004 ], [ 151.465442700000011, -33.4126928 ], [ 151.4648702, -33.4135337 ], [ 151.4645419, -33.4141405 ], [ 151.4640283, -33.4146465 ], [ 151.463329499999986, -33.4150025 ], [ 151.4630123, -33.4152485 ], [ 151.4628299, -33.415621 ], [ 151.4626643, -33.4160051 ], [ 151.4626391, -33.4165673 ], [ 151.462434762717947, -33.416988899019934 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Tallow Beach", "id": "way159097567" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.349108455640987, -33.539790536986899 ], [ 151.3489031, -33.5398554 ], [ 151.3485361, -33.5400344 ], [ 151.3481105, -33.5403808 ], [ 151.34784, -33.5406738 ], [ 151.347755441936187, -33.540871798473809 ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallow Beach", "id": "way159097569" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.35352257279996, -33.53667224764672 ], [ 151.3533091, -33.5366432 ], [ 151.3517281, -33.5376455 ], [ 151.350390299999987, -33.5386576 ], [ 151.3496644, -33.5391748 ], [ 151.349711823092235, -33.539385023097928 ] ] } }, +{ "type": "Feature", "properties": { "name": "Malabar Beach", "id": "way168834629" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.253545699645287, -33.964025713428391 ], [ 151.2533678, -33.9639024 ], [ 151.2532175, -33.963856 ], [ 151.2529199, -33.9638858 ], [ 151.252563400000014, -33.9640459 ], [ 151.252331199999986, -33.9642222 ], [ 151.251997499999987, -33.9644663 ], [ 151.2518373, -33.9646372 ], [ 151.251749, -33.9647973 ], [ 151.251729, -33.9648745 ], [ 151.251745699999987, -33.9649627 ], [ 151.2518441, -33.9650754 ], [ 151.252011037984005, -33.965192550583723 ] ] } }, +{ "type": "Feature", "properties": { "name": "Oxley Beach", "id": "way173018832" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.923734136959553, -31.43056061934303 ], [ 152.924011400000012, -31.4308092 ], [ 152.9232974, -31.4307159 ], [ 152.9231294, -31.4313892 ], [ 152.923237300000011, -31.4328054 ], [ 152.923732199999989, -31.4329605 ], [ 152.923980199999988, -31.4330751 ], [ 152.9246219, -31.4333649 ], [ 152.924832091313135, -31.433372107941466 ] ] } }, +{ "type": "Feature", "properties": { "name": "Town Beach", "id": "way173018833" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.917641374611634, -31.426882116876108 ], [ 152.9174304, -31.4268955 ], [ 152.9170292, -31.4270509 ], [ 152.916933, -31.4271564 ], [ 152.9169824, -31.4274973 ], [ 152.9170426, -31.4277826 ], [ 152.9171915, -31.4280126 ], [ 152.917315, -31.4281283 ], [ 152.9179356, -31.4285597 ], [ 152.91826180000001, -31.4287491 ], [ 152.918452, -31.4289626 ], [ 152.9183914, -31.4290412 ], [ 152.9189767, -31.4295591 ], [ 152.919774100000012, -31.4299501 ], [ 152.9204708, -31.4300099 ], [ 152.9210792, -31.4299569 ], [ 152.9219563, -31.4300503 ], [ 152.9224002, -31.4299592 ], [ 152.922587032401822, -31.4300561761304 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way173068753" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.839390593791819, -31.587609169933124 ], [ 152.83933, -31.5878111 ], [ 152.83933, -31.58791 ], [ 152.8394026, -31.588094 ], [ 152.83963, -31.58867 ], [ 152.83978, -31.5897 ], [ 152.839973310755568, -31.589783721846267 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way173068754" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.840207133795815, -31.589935930166185 ], [ 152.840369, -31.5900708 ], [ 152.84067, -31.59034 ], [ 152.84098, -31.5906 ], [ 152.841213399999987, -31.5908793 ], [ 152.8418579, -31.5917603 ], [ 152.8421143, -31.5919584 ], [ 152.84233, -31.59201 ], [ 152.842408616042775, -31.592080754438477 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way173070324" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.843150270972586, -31.594382004964 ], [ 152.8432119, -31.5944693 ], [ 152.8432908, -31.5945392 ], [ 152.843461, -31.59469 ], [ 152.844026095900944, -31.594753717649155 ] ] } }, +{ "type": "Feature", "properties": { "name": "Lighthouse Beach", "id": "way173070325" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.935707348050073, -31.47613205201214 ], [ 152.9357047, -31.4761292 ], [ 152.9356717, -31.4759245 ], [ 152.935640799999987, -31.4757328 ], [ 152.935407, -31.4757359 ], [ 152.9350336, -31.4756948 ], [ 152.9339822, -31.4761797 ], [ 152.9317742, -31.4773153 ], [ 152.9306101, -31.4783748 ], [ 152.929939600000012, -31.4796027 ], [ 152.928145699999988, -31.4811033 ], [ 152.92665980000001, -31.4823961 ], [ 152.9255129, -31.4833532 ], [ 152.92457730000001, -31.4841565 ], [ 152.9154374, -31.4925168 ], [ 152.9076715, -31.4996526 ], [ 152.901148400000011, -31.5060596 ], [ 152.8947948, -31.5118533 ], [ 152.8871945, -31.5194118 ], [ 152.884392100000014, -31.5222351 ], [ 152.882521, -31.5239755 ], [ 152.88207, -31.52443 ], [ 152.88192, -31.52457 ], [ 152.87837540000001, -31.528239 ], [ 152.87576, -31.5306 ], [ 152.87561, -31.53072 ], [ 152.8744, -31.53213 ], [ 152.87365, -31.53265 ], [ 152.8735, -31.53278 ], [ 152.8732, -31.53303 ], [ 152.87154, -31.53496 ], [ 152.87141, -31.53509 ], [ 152.86989, -31.53663 ], [ 152.86974, -31.53676 ], [ 152.86959, -31.53689 ], [ 152.86944, -31.53702 ], [ 152.86914, -31.53753 ], [ 152.86899, -31.53766 ], [ 152.86884, -31.53779 ], [ 152.86869, -31.5383 ], [ 152.86764, -31.53933 ], [ 152.86734, -31.53984 ], [ 152.86719, -31.53997 ], [ 152.86553, -31.54216 ], [ 152.86523, -31.54267 ], [ 152.86508, -31.5428 ], [ 152.86403, -31.5437 ], [ 152.86373, -31.54421 ], [ 152.86358, -31.54434 ], [ 152.86343, -31.54447 ], [ 152.86328, -31.5446 ], [ 152.86313, -31.54472 ], [ 152.86282, -31.54525 ], [ 152.86266, -31.54537 ], [ 152.86253, -31.5455 ], [ 152.86237, -31.54601 ], [ 152.86132, -31.54678 ], [ 152.86102, -31.54729 ], [ 152.86087, -31.54743 ], [ 152.86042, -31.54806 ], [ 152.86012, -31.54858 ], [ 152.85982, -31.54909 ], [ 152.85967, -31.54922 ], [ 152.85952, -31.54935 ], [ 152.859341, -31.5496444 ], [ 152.85921, -31.54986 ], [ 152.85906, -31.55038 ], [ 152.85861, -31.55089 ], [ 152.85846, -31.55102 ], [ 152.85831, -31.55115 ], [ 152.858, -31.55166 ], [ 152.85787, -31.5518 ], [ 152.85771, -31.55192 ], [ 152.85756, -31.55205 ], [ 152.85741, -31.55218 ], [ 152.85711, -31.55295 ], [ 152.85696, -31.55346 ], [ 152.85575, -31.55499 ], [ 152.855, -31.55577 ], [ 152.85455, -31.55654 ], [ 152.8538567, -31.5581304 ], [ 152.8527077, -31.559339 ], [ 152.85079, -31.5622 ], [ 152.85049, -31.56272 ], [ 152.85048, -31.56374 ], [ 152.85048, -31.56425 ], [ 152.85018, -31.56477 ], [ 152.85003, -31.56489 ], [ 152.84988, -31.56502 ], [ 152.84958, -31.56554 ], [ 152.84943, -31.56567 ], [ 152.84868, -31.56657 ], [ 152.84853, -31.56734 ], [ 152.84777, -31.56811 ], [ 152.84747, -31.56862 ], [ 152.84642, -31.57042 ], [ 152.845647, -31.5716653 ], [ 152.84475, -31.57299 ], [ 152.84446, -31.5735 ], [ 152.84356, -31.57504 ], [ 152.84296, -31.57633 ], [ 152.84205, -31.57813 ], [ 152.84175, -31.5789 ], [ 152.84145, -31.57993 ], [ 152.84118380000001, -31.5813321 ], [ 152.84069, -31.58301 ], [ 152.8402719, -31.5844999 ], [ 152.83963, -31.58687 ], [ 152.8395351, -31.5871276 ], [ 152.839353911198202, -31.587731415436444 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way173070326" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.84263, -31.592512009210409 ], [ 152.84263, -31.59253 ], [ 152.84248, -31.59266 ], [ 152.84233, -31.59279 ], [ 152.84233, -31.59304 ], [ 152.84263, -31.59381 ], [ 152.84293, -31.59407 ], [ 152.8432119, -31.5944693 ], [ 152.8432908, -31.5945392 ], [ 152.843372988461056, -31.59461202032859 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bondi Beach", "id": "way173244595" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.282075589597355, -33.891412738167325 ], [ 151.2821901, -33.8912293 ], [ 151.2821727, -33.8911259 ], [ 151.2820427, -33.8910557 ], [ 151.282006700000011, -33.8910362 ], [ 151.281773, -33.8909568 ], [ 151.2812968, -33.8908622 ], [ 151.280978299999987, -33.8908902 ], [ 151.280685, -33.8909245 ], [ 151.2801883, -33.890866 ], [ 151.279909, -33.8909641 ], [ 151.2793914, -33.8911245 ], [ 151.2789166, -33.8912269 ], [ 151.2785925, -33.8912026 ], [ 151.2782353, -33.8913175 ], [ 151.278005, -33.8913922 ], [ 151.2774067, -33.8916787 ], [ 151.27723610000001, -33.8917937 ], [ 151.276983800000011, -33.8919103 ], [ 151.2764422, -33.892135 ], [ 151.276266099999987, -33.8922106 ], [ 151.275948699999987, -33.8924246 ], [ 151.2756771, -33.8925853 ], [ 151.2754758, -33.8927038 ], [ 151.2753261, -33.892851 ], [ 151.2752154, -33.8930106 ], [ 151.2751027, -33.893093 ], [ 151.274985, -33.8932688 ], [ 151.274876400000011, -33.8933729 ], [ 151.2746482, -33.8935432 ], [ 151.2745347, -33.8936488 ], [ 151.274436900000012, -33.8938218 ], [ 151.2743063, -33.8941463 ], [ 151.274296600000014, -33.8943836 ], [ 151.274395460803504, -33.894579076811333 ] ] } }, +{ "type": "Feature", "properties": { "name": "Tamarama Beach", "id": "way173257848" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.271598965459589, -33.90053007428407 ], [ 151.2714806, -33.9005098 ], [ 151.271282500000012, -33.9004914 ], [ 151.271028800000011, -33.9005745 ], [ 151.270574900000014, -33.9009475 ], [ 151.2703295, -33.9012491 ], [ 151.270332700000012, -33.9013481 ], [ 151.2703359, -33.9013714 ], [ 151.270340939336165, -33.901564166382443 ] ] } }, +{ "type": "Feature", "properties": { "name": "Clovelly Beach", "id": "way173257859" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.267235973186587, -33.91382639127044 ], [ 151.2671435, -33.9137221 ], [ 151.267064, -33.9136952 ], [ 151.2669832, -33.9137862 ], [ 151.2668038, -33.9138463 ], [ 151.2666644, -33.9138637 ], [ 151.2664461, -33.9139086 ], [ 151.2666849, -33.9140001 ], [ 151.266763554210087, -33.914069495158657 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way179719797" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.21478442415679, -34.006730845203563 ], [ 151.2147917, -34.0067252 ], [ 151.2149841, -34.0066472 ], [ 151.215118600000011, -34.0065638 ], [ 151.2152707, -34.006503 ], [ 151.2154233, -34.0064771 ], [ 151.215437400000013, -34.0064633 ], [ 151.215686, -34.00622 ], [ 151.215795, -34.006181 ], [ 151.215966, -34.006115 ], [ 151.216051, -34.00608 ], [ 151.2160771, -34.0060683 ], [ 151.216134, -34.006043 ], [ 151.216213, -34.006002 ], [ 151.216304, -34.005949 ], [ 151.21639, -34.005891 ], [ 151.216474, -34.005829 ], [ 151.216745, -34.005612 ], [ 151.216798, -34.005567 ], [ 151.216848, -34.00552 ], [ 151.216891, -34.005469 ], [ 151.216912, -34.005439 ], [ 151.216946, -34.005374 ], [ 151.216983, -34.00531 ], [ 151.21702, -34.005269 ], [ 151.21711, -34.005188 ], [ 151.217142, -34.005151 ], [ 151.21715, -34.005116 ], [ 151.21714, -34.005092 ], [ 151.217122, -34.00507 ], [ 151.21708, -34.005027 ], [ 151.217064, -34.005003 ], [ 151.217051, -34.004959 ], [ 151.217051, -34.00491 ], [ 151.217054, -34.00486 ], [ 151.217052, -34.004812 ], [ 151.217039, -34.004769 ], [ 151.217011, -34.004736 ], [ 151.217010985559057, -34.004735989659565 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way179948425" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.29722893156989, -33.800889763435727 ], [ 151.2972882, -33.8008917 ], [ 151.297349, -33.800874 ], [ 151.297412, -33.80085 ], [ 151.297474, -33.800814 ], [ 151.297564, -33.800743 ], [ 151.297596, -33.800713 ], [ 151.297626, -33.800681 ], [ 151.297653, -33.800648 ], [ 151.297676, -33.800614 ], [ 151.297707, -33.80056 ], [ 151.29772, -33.800531 ], [ 151.297731, -33.800502 ], [ 151.29774, -33.800473 ], [ 151.297746, -33.800445 ], [ 151.29775, -33.800416 ], [ 151.297753, -33.800387 ], [ 151.297754, -33.800359 ], [ 151.297753, -33.80033 ], [ 151.297747, -33.800278 ], [ 151.297743, -33.800252 ], [ 151.297735, -33.800227 ], [ 151.297725, -33.800204 ], [ 151.29771, -33.800181 ], [ 151.297691, -33.80016 ], [ 151.297671, -33.80014 ], [ 151.297649, -33.80012 ], [ 151.297626, -33.800102 ], [ 151.297585, -33.800068 ], [ 151.297563, -33.800052 ], [ 151.297541, -33.800038 ], [ 151.297520700943807, -33.800027004677901 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bullimah Beach", "id": "way179975399" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.38078742708646, -33.532390922378568 ], [ 151.380797300000012, -33.5323011 ], [ 151.3807983, -33.5321759 ], [ 151.380209900000011, -33.5316073 ], [ 151.3800886, -33.5315952 ], [ 151.379941017158359, -33.531558930235526 ] ] } }, +{ "type": "Feature", "properties": { "name": "Treachery Beach", "id": "way182614828" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.518265988748595, -32.452499180745299 ], [ 152.518172, -32.4523082 ], [ 152.516534799999988, -32.4522532 ], [ 152.5125188, -32.4528515 ], [ 152.510748799999988, -32.4535041 ], [ 152.5080979, -32.4542525 ], [ 152.5063247, -32.4548203 ], [ 152.5049745, -32.4553121 ], [ 152.5028384, -32.456221 ], [ 152.499696199999988, -32.4576442 ], [ 152.499677314412338, -32.457856088887389 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way182621175" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.52947874849653, -32.434526455144947 ], [ 152.5300441, -32.4348 ], [ 152.531713200000013, -32.4351627 ], [ 152.5332498, -32.4352521 ], [ 152.5343801, -32.4350312 ], [ 152.534871, -32.4347936 ], [ 152.5348909, -32.4346687 ], [ 152.534904487171161, -32.434583469695788 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way182621183" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.518226359445066, -32.424800347090937 ], [ 152.518128499999989, -32.4249891 ], [ 152.5182536, -32.4255171 ], [ 152.5185822, -32.4263045 ], [ 152.519100900000012, -32.427377 ], [ 152.5194675, -32.4283178 ], [ 152.519965, -32.429167 ], [ 152.5203263, -32.4296431 ], [ 152.5209219, -32.4302239 ], [ 152.5219261, -32.4310977 ], [ 152.5229115, -32.4315059 ], [ 152.5238774, -32.4317983 ], [ 152.5250101, -32.4317597 ], [ 152.5251332, -32.4313703 ], [ 152.525233987412719, -32.431091416970382 ] ] } }, +{ "type": "Feature", "properties": { "name": "Gap Beach", "id": "way189322079" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.081997891905672, -30.899193484577758 ], [ 153.0819129, -30.8992008 ], [ 153.0817956, -30.8992466 ], [ 153.081463, -30.8995135 ], [ 153.081328899999988, -30.8997345 ], [ 153.08120550000001, -30.9001948 ], [ 153.081071400000013, -30.900807 ], [ 153.08102310000001, -30.9018887 ], [ 153.080990899999989, -30.9029151 ], [ 153.08102310000001, -30.9034583 ], [ 153.0810553, -30.9041073 ], [ 153.0810969, -30.9044548 ], [ 153.0811076, -30.9048288 ], [ 153.0811626, -30.9051475 ], [ 153.0812699, -30.9055433 ], [ 153.0814844, -30.9060232 ], [ 153.0816601, -30.9064489 ], [ 153.0818439, -30.9066952 ], [ 153.0819404, -30.9067665 ], [ 153.0819981, -30.9068494 ], [ 153.0820477, -30.9069265 ], [ 153.0821604, -30.9069805 ], [ 153.082161108653935, -30.906980676073246 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189326450" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.974245520347637, -31.314582969478607 ], [ 152.9742401, -31.314581 ], [ 152.9740787, -31.3146747 ], [ 152.9738998, -31.3149991 ], [ 152.97368, -31.31568 ], [ 152.9735, -31.3171615 ], [ 152.973659636131316, -31.317156465163638 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189326451" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.968770562689571, -31.252794413728807 ], [ 152.96861, -31.25293 ], [ 152.96861, -31.25576 ], [ 152.96861, -31.25653 ], [ 152.96891, -31.25808 ], [ 152.96921, -31.25885 ], [ 152.96951, -31.25936 ], [ 152.9700619, -31.2600583 ], [ 152.9708161, -31.2612872 ], [ 152.9700656, -31.2623082 ], [ 152.9697347, -31.262902 ], [ 152.96936, -31.26399 ], [ 152.9690649, -31.2644701 ], [ 152.9686711, -31.2654123 ], [ 152.9683686, -31.2660549 ], [ 152.96801, -31.26708 ], [ 152.96771, -31.26811 ], [ 152.9674248, -31.2687467 ], [ 152.9665886, -31.2732679 ], [ 152.9666776, -31.2750321 ], [ 152.96681, -31.27556 ], [ 152.966979, -31.2763255 ], [ 152.9671624, -31.2770563 ], [ 152.9673419, -31.2774182 ], [ 152.9675914, -31.2778263 ], [ 152.967881, -31.2781578 ], [ 152.96875, -31.27877 ], [ 152.96905, -31.27877 ], [ 152.969082525923511, -31.27874289506375 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189326452" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.967662908247974, -31.285527908730849 ], [ 152.967317900000012, -31.2857303 ], [ 152.9671, -31.28636 ], [ 152.9670376, -31.2876694 ], [ 152.9671631, -31.2885236 ], [ 152.966536499999989, -31.2889961 ], [ 152.9662643, -31.2893015 ], [ 152.9660462, -31.2897779 ], [ 152.9655426, -31.2908561 ], [ 152.96501, -31.29253 ], [ 152.96471, -31.29408 ], [ 152.9646022, -31.2955376 ], [ 152.9642178, -31.2986712 ], [ 152.964190800000011, -31.2996379 ], [ 152.9642816, -31.3011782 ], [ 152.9644, -31.30282 ], [ 152.9644567, -31.3040618 ], [ 152.9647851, -31.3060146 ], [ 152.965, -31.30668 ], [ 152.9651475, -31.3073337 ], [ 152.9656, -31.30849 ], [ 152.965915700000011, -31.3093549 ], [ 152.966182, -31.3097819 ], [ 152.9664975, -31.310307 ], [ 152.9666784, -31.3106018 ], [ 152.96695, -31.31092 ], [ 152.9672947, -31.311273 ], [ 152.9676748, -31.3116455 ], [ 152.967908099999988, -31.3118531 ], [ 152.96821940000001, -31.3120888 ], [ 152.9689492, -31.3124794 ], [ 152.969453499999986, -31.3126424 ], [ 152.9702445, -31.3127315 ], [ 152.971044, -31.3126394 ], [ 152.97115, -31.31246 ], [ 152.9714189, -31.3123938 ], [ 152.971494394599972, -31.312197763259274 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189326453" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.97676996799521, -31.19598 ], [ 152.97656, -31.19598 ], [ 152.9760507, -31.1961905 ], [ 152.97581, -31.19662 ], [ 152.975625799999989, -31.1967681 ], [ 152.975314700000013, -31.1971954 ], [ 152.97491, -31.19765 ], [ 152.9745647, -31.1981874 ], [ 152.9742636, -31.1985035 ], [ 152.9738851, -31.1991239 ], [ 152.9736445, -31.199364 ], [ 152.97342, -31.19996 ], [ 152.97312, -31.20048 ], [ 152.972834, -31.2008926 ], [ 152.9724304, -31.2016163 ], [ 152.97222, -31.20202 ], [ 152.97192, -31.20279 ], [ 152.97177, -31.20291 ], [ 152.97162, -31.20305 ], [ 152.97132, -31.20356 ], [ 152.97102, -31.20459 ], [ 152.97072, -31.20485 ], [ 152.97041, -31.20536 ], [ 152.97012, -31.20613 ], [ 152.96982, -31.20665 ], [ 152.969574200000011, -31.2074891 ], [ 152.969216, -31.2079801 ], [ 152.96893, -31.20844 ], [ 152.96863, -31.20922 ], [ 152.96848, -31.20935 ], [ 152.96833, -31.20946 ], [ 152.96803, -31.2105 ], [ 152.96788, -31.21064 ], [ 152.96773, -31.21076 ], [ 152.96713, -31.2123 ], [ 152.96683, -31.21256 ], [ 152.9665742, -31.2134624 ], [ 152.9662764, -31.2139275 ], [ 152.96593, -31.21513 ], [ 152.9656904, -31.2154546 ], [ 152.9653602, -31.2165149 ], [ 152.96512580000001, -31.2169558 ], [ 152.96473, -31.21796 ], [ 152.96443, -31.21847 ], [ 152.96414, -31.2195 ], [ 152.96384, -31.22002 ], [ 152.96324, -31.22156 ], [ 152.96294, -31.2231 ], [ 152.962776, -31.2235667 ], [ 152.9619796, -31.2263337 ], [ 152.9618307, -31.2267517 ], [ 152.9616796, -31.2275879 ], [ 152.9615155, -31.2283046 ], [ 152.961260900000013, -31.2295429 ], [ 152.96114, -31.23107 ], [ 152.9609307, -31.2317625 ], [ 152.9608249, -31.2322566 ], [ 152.9607332, -31.2325971 ], [ 152.960662, -31.2331397 ], [ 152.960512, -31.2346784 ], [ 152.96039110000001, -31.2360763 ], [ 152.9602724, -31.2372804 ], [ 152.9600682, -31.2380138 ], [ 152.960106200000013, -31.2427837 ], [ 152.960119099999986, -31.2436829 ], [ 152.960366, -31.2457171 ], [ 152.96083, -31.24727 ], [ 152.96113, -31.2479708 ], [ 152.9615789, -31.2492008 ], [ 152.9619253, -31.2499967 ], [ 152.962092406285137, -31.25014976594553 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189330192" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.972561884802673, -31.31871772706717 ], [ 152.972352300000011, -31.3187037 ], [ 152.9715664, -31.3205189 ], [ 152.971810413279684, -31.320540075983519 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Shore Beach", "id": "way189407637" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.970018914084648, -31.322163439882207 ], [ 152.969865, -31.3220266 ], [ 152.969175, -31.3221592 ], [ 152.966246, -31.3247135 ], [ 152.9566302, -31.3352959 ], [ 152.95037880000001, -31.3431035 ], [ 152.939902, -31.3576194 ], [ 152.9376062, -31.3610169 ], [ 152.9321433, -31.3694656 ], [ 152.9275831, -31.3774087 ], [ 152.9246268, -31.3827942 ], [ 152.9207926, -31.3911463 ], [ 152.9179069, -31.3983639 ], [ 152.9164863, -31.4027726 ], [ 152.9147773, -31.4090436 ], [ 152.9142004, -31.4120777 ], [ 152.9138946, -31.4150855 ], [ 152.913926800000013, -31.41596 ], [ 152.9137874, -31.419192 ], [ 152.9138035, -31.4223049 ], [ 152.9137069, -31.4231746 ], [ 152.913739600000014, -31.4235238 ], [ 152.913935200028646, -31.423600827457452 ] ] } }, +{ "type": "Feature", "properties": { "name": "O'Connors Beach", "id": "way189423444" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.058207521122597, -31.063015018621432 ], [ 153.05815, -31.06301 ], [ 153.0580685, -31.0631722 ], [ 153.0574059, -31.0638846 ], [ 153.0569748, -31.0645194 ], [ 153.0563324, -31.0653018 ], [ 153.0561576, -31.0656073 ], [ 153.056175171408313, -31.065816111373042 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189423470" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.053924570754475, -31.069679301528978 ], [ 153.053904499999987, -31.0696955 ], [ 153.053723, -31.0697366 ], [ 153.05322, -31.0706 ], [ 153.05322, -31.070809517848197 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189481960" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.209557908927508, -30.113067925457742 ], [ 153.209394800000013, -30.1129393 ], [ 153.208794, -30.1133579 ], [ 153.207895400000012, -30.1145175 ], [ 153.207044599999989, -30.116582 ], [ 153.2058596, -30.1200185 ], [ 153.2049364, -30.1228503 ], [ 153.20461130000001, -30.1245722 ], [ 153.2044981, -30.1275458 ], [ 153.2050073, -30.1289599 ], [ 153.205258500000014, -30.129592 ], [ 153.205258500000014, -30.1300068 ], [ 153.204950200000013, -30.1303722 ], [ 153.2044563, -30.1305217 ], [ 153.203676800000011, -30.1312153 ], [ 153.2033595, -30.1316342 ], [ 153.202910300000013, -30.1322272 ], [ 153.2026725, -30.1325293 ], [ 153.202180199999987, -30.1331547 ], [ 153.201934200000011, -30.1337763 ], [ 153.2017306, -30.1342909 ], [ 153.2012875, -30.135518 ], [ 153.2006793, -30.1374435 ], [ 153.2006921, -30.1372573 ], [ 153.2003762, -30.1388796 ], [ 153.2002511, -30.1395217 ], [ 153.2001157, -30.1403717 ], [ 153.1999853, -30.1411908 ], [ 153.199937299999988, -30.1414919 ], [ 153.1999409, -30.1417095 ], [ 153.1999581, -30.1427363 ], [ 153.19995990000001, -30.1428455 ], [ 153.199968799509605, -30.142945817946327 ] ] } }, +{ "type": "Feature", "properties": { "name": "minnie Water Back Beach", "id": "way189511968" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.297191402481445, -29.783194767201998 ], [ 153.29697920000001, -29.7831581 ], [ 153.296781, -29.7831844 ], [ 153.296535799999987, -29.783289 ], [ 153.295947500000011, -29.7837895 ], [ 153.2951962, -29.7844668 ], [ 153.2945451, -29.7852747 ], [ 153.2939249, -29.7860736 ], [ 153.2928741, -29.7876996 ], [ 153.29204630000001, -29.7892159 ], [ 153.2909233, -29.7911956 ], [ 153.2898802, -29.7935185 ], [ 153.2884554, -29.7978369 ], [ 153.287739, -29.8008567 ], [ 153.2871365, -29.8037611 ], [ 153.287025199999988, -29.8044442 ], [ 153.2869713, -29.8048741 ], [ 153.2869614, -29.8052302 ], [ 153.2870183, -29.8056331 ], [ 153.2870931, -29.8059587 ], [ 153.2872744, -29.806319 ], [ 153.28745570000001, -29.8065943 ], [ 153.287747, -29.8069096 ], [ 153.287920871815572, -29.80705688317024 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189511969" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.291325908922403, -29.8265070987412 ], [ 153.291214, -29.8263331 ], [ 153.2908965, -29.8262735 ], [ 153.290444799999989, -29.8263522 ], [ 153.290257700149709, -29.826440421558825 ] ] } }, +{ "type": "Feature", "properties": { "name": "Hyland Park Beach", "id": "way189940675" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.011918779384587, -30.600120984229367 ], [ 153.0118291, -30.6003142 ], [ 153.0118214, -30.6009401 ], [ 153.0110919, -30.6034242 ], [ 153.010609100000011, -30.6063053 ], [ 153.0101477, -30.6074965 ], [ 153.0102336, -30.614588 ], [ 153.0109524, -30.6207095 ], [ 153.0117893, -30.6238394 ], [ 153.0128085, -30.6259444 ], [ 153.0134629, -30.6262214 ], [ 153.013428812363429, -30.626452913336909 ] ] } }, +{ "type": "Feature", "properties": { "name": "Killick Beach", "id": "way190929758" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.048933337086964, -31.079724835477545 ], [ 153.0487248, -31.0797035 ], [ 153.04845, -31.07986 ], [ 153.0479139, -31.0807333 ], [ 153.0468699, -31.0816105 ], [ 153.0460813, -31.0823671 ], [ 153.04531, -31.08282 ], [ 153.04456, -31.08346 ], [ 153.0442042, -31.083822 ], [ 153.04277, -31.08501 ], [ 153.04128, -31.08655 ], [ 153.040193499999987, -31.0874051 ], [ 153.03904, -31.08874 ], [ 153.038667, -31.0890158 ], [ 153.03799, -31.08964 ], [ 153.0374445, -31.0903104 ], [ 153.0365, -31.09118 ], [ 153.0357419, -31.0921019 ], [ 153.03401070000001, -31.0935425 ], [ 153.033802900000012, -31.0938654 ], [ 153.033659, -31.0942032 ], [ 153.0332708, -31.0946743 ], [ 153.032780300000013, -31.0949015 ], [ 153.03202, -31.09581 ], [ 153.03088120000001, -31.097057 ], [ 153.030169300000011, -31.0973351 ], [ 153.02978, -31.09761 ], [ 153.0295106, -31.0984682 ], [ 153.0287997, -31.0988925 ], [ 153.028728199999989, -31.0989607 ], [ 153.0282303, -31.0994358 ], [ 153.02783, -31.09993 ], [ 153.0271592, -31.1005182 ], [ 153.026619399999987, -31.101167 ], [ 153.026420800000011, -31.1015708 ], [ 153.02603, -31.10173 ], [ 153.0254808, -31.1023208 ], [ 153.0254601, -31.1023431 ], [ 153.0249704, -31.1030444 ], [ 153.02395, -31.10404 ], [ 153.02365, -31.1046694 ], [ 153.02335, -31.10481 ], [ 153.0228102, -31.1051668 ], [ 153.022379199999989, -31.1055737 ], [ 153.0220301, -31.1060204 ], [ 153.0215891, -31.1064631 ], [ 153.0210904, -31.1072331 ], [ 153.02066, -31.10764 ], [ 153.0204498, -31.1080569 ], [ 153.0200705, -31.108479 ], [ 153.019260300000013, -31.1092072 ], [ 153.0189899, -31.1096399 ], [ 153.0185504, -31.1099405 ], [ 153.0177598, -31.1109299 ], [ 153.0172004, -31.1114118 ], [ 153.0166395, -31.1120286 ], [ 153.016140900000011, -31.1128845 ], [ 153.01558, -31.1133 ], [ 153.0144, -31.11433 ], [ 153.0135966, -31.115525 ], [ 153.0126, -31.11639 ], [ 153.0123, -31.1169 ], [ 153.011854, -31.1173005 ], [ 153.0115068, -31.1176837 ], [ 153.011480299999988, -31.1177129 ], [ 153.0108155, -31.118602 ], [ 153.010683, -31.1189746 ], [ 153.010465399999987, -31.1191914 ], [ 153.0100306, -31.1195815 ], [ 153.0096828, -31.1198826 ], [ 153.0093096, -31.1201448 ], [ 153.00915, -31.1203781 ], [ 153.008802, -31.1207889 ], [ 153.0084056, -31.1214102 ], [ 153.00796, -31.12166 ], [ 153.00751, -31.12205 ], [ 153.0073504, -31.1225171 ], [ 153.0073208, -31.1228639 ], [ 153.0067067, -31.1234063 ], [ 153.00632, -31.12384 ], [ 153.0059348, -31.1243438 ], [ 153.00557, -31.12475 ], [ 153.0054673, -31.1248641 ], [ 153.0047921, -31.1258603 ], [ 153.0046475, -31.1260241 ], [ 153.0042579, -31.1264637 ], [ 153.00393, -31.12693 ], [ 153.0034875, -31.1274139 ], [ 153.00317, -31.12783 ], [ 153.00304, -31.12796 ], [ 153.0023975, -31.1289463 ], [ 153.00184, -31.1295 ], [ 153.00154, -31.13002 ], [ 153.00127710000001, -31.1303097 ], [ 153.00094, -31.13079 ], [ 153.0004087, -31.1313331 ], [ 153.00004, -31.13182 ], [ 152.99944, -31.13233 ], [ 152.99885, -31.13336 ], [ 152.9985887, -31.1336531 ], [ 152.99795, -31.13465 ], [ 152.99764110000001, -31.1349872 ], [ 152.9974363, -31.1353525 ], [ 152.9973163, -31.1355377 ], [ 152.9969863, -31.1360329 ], [ 152.99645, -31.1367 ], [ 152.996208200000012, -31.137005 ], [ 152.99556, -31.13799 ], [ 152.9949863, -31.1385337 ], [ 152.994625, -31.1391513 ], [ 152.9943031, -31.1397375 ], [ 152.99406, -31.14005 ], [ 152.99346, -31.14108 ], [ 152.9929774, -31.1417076 ], [ 152.992634399999986, -31.1421515 ], [ 152.9920104, -31.1430234 ], [ 152.99167, -31.14366 ], [ 152.991038, -31.1445174 ], [ 152.99077, -31.14493 ], [ 152.9904511, -31.1455839 ], [ 152.9897662, -31.1464367 ], [ 152.98946620000001, -31.1470589 ], [ 152.98928, -31.1475 ], [ 152.98898, -31.14803 ], [ 152.9885578, -31.148689 ], [ 152.9881727, -31.1494226 ], [ 152.98778, -31.15008 ], [ 152.98718, -31.1511 ], [ 152.98704, -31.15188 ], [ 152.9856622, -31.1534561 ], [ 152.9853563, -31.1541359 ], [ 152.9850352, -31.1547833 ], [ 152.98479, -31.15522 ], [ 152.98449, -31.15599 ], [ 152.98419, -31.1565 ], [ 152.9840922, -31.1568546 ], [ 152.9836, -31.15779 ], [ 152.9834921, -31.1579624 ], [ 152.9833716, -31.1581582 ], [ 152.9829326, -31.1592146 ], [ 152.9827, -31.15959 ], [ 152.9821, -31.16112 ], [ 152.9812, -31.16268 ], [ 152.98091, -31.16345 ], [ 152.9806, -31.16422 ], [ 152.980396899999988, -31.1645449 ], [ 152.98001, -31.16525 ], [ 152.9796426, -31.1657059 ], [ 152.97941, -31.16602 ], [ 152.97851, -31.16859 ], [ 152.9783659, -31.168969 ], [ 152.9780027, -31.1699277 ], [ 152.97761, -31.17065 ], [ 152.9772265, -31.1724091 ], [ 152.97671, -31.17322 ], [ 152.97651110000001, -31.1737949 ], [ 152.97612, -31.17527 ], [ 152.97582, -31.17605 ], [ 152.97582, -31.17657 ], [ 152.975684300000012, -31.1771241 ], [ 152.97552, -31.18016 ], [ 152.97581, -31.18196 ], [ 152.9758755, -31.1825514 ], [ 152.97611, -31.1835 ], [ 152.97671, -31.18453 ], [ 152.9769126, -31.1848716 ], [ 152.977147, -31.1852645 ], [ 152.9780649, -31.1866308 ], [ 152.978389600000014, -31.1870407 ], [ 152.9785221, -31.1871755 ], [ 152.978556344093732, -31.186913492864203 ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallow Beach", "id": "way191324197" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.635664386063809, -28.642829325986693 ], [ 153.635580299999987, -28.6426429 ], [ 153.6351186, -28.6424896 ], [ 153.634665899999987, -28.6429048 ], [ 153.633862, -28.6438433 ], [ 153.632910399999986, -28.6453444 ], [ 153.6308995, -28.6484727 ], [ 153.6294493, -28.6509796 ], [ 153.628117300000014, -28.6540071 ], [ 153.6276286, -28.6547439 ], [ 153.6264648, -28.6571053 ], [ 153.6248943, -28.6609411 ], [ 153.623361, -28.6647457 ], [ 153.6196842, -28.6739556 ], [ 153.617936500000013, -28.6793206 ], [ 153.6175868, -28.6803942 ], [ 153.6169792, -28.6822479 ], [ 153.616698, -28.6845292 ], [ 153.616027, -28.6869462 ], [ 153.616003, -28.6870154 ], [ 153.6152247, -28.6892632 ], [ 153.6151083, -28.6904281 ], [ 153.614944900000012, -28.6917426 ], [ 153.6149723, -28.6927174 ], [ 153.6147585, -28.6949418 ], [ 153.6144332, -28.6963497 ], [ 153.6143137, -28.6970197 ], [ 153.614277776152818, -28.697221287056148 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fiona Beach", "id": "way192040645" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.496287954448576, -32.457017379482956 ], [ 152.4961441, -32.4568607 ], [ 152.494002599999988, -32.4574999 ], [ 152.4928102, -32.4577567 ], [ 152.4915564, -32.4580751 ], [ 152.4896202, -32.4585477 ], [ 152.487163900000013, -32.4591493 ], [ 152.4843061, -32.4599744 ], [ 152.482729299999988, -32.4604629 ], [ 152.4779967, -32.461746 ], [ 152.4772705, -32.462035 ], [ 152.4747346, -32.4627423 ], [ 152.4740899, -32.4629139 ], [ 152.4717583, -32.4635407 ], [ 152.4702553, -32.4639375 ], [ 152.4682984, -32.4647492 ], [ 152.4658514, -32.4653187 ], [ 152.458878, -32.4675682 ], [ 152.4579326, -32.4678947 ], [ 152.457042699999988, -32.4682084 ], [ 152.456549099999989, -32.4682835 ], [ 152.4550194, -32.468741 ], [ 152.454108100000013, -32.4690835 ], [ 152.4511357, -32.4701472 ], [ 152.448518400000012, -32.471045 ], [ 152.4464415, -32.4717926 ], [ 152.4403386, -32.4738969 ], [ 152.439111700000012, -32.474375 ], [ 152.438403599999987, -32.4747389 ], [ 152.4373546, -32.4752209 ], [ 152.435562, -32.4757963 ], [ 152.4336439, -32.4765439 ], [ 152.432812899999988, -32.4767979 ], [ 152.4315841, -32.477234 ], [ 152.4301208, -32.4779009 ], [ 152.4265327, -32.4793843 ], [ 152.424694, -32.4800484 ], [ 152.4200978, -32.4820079 ], [ 152.4181165, -32.483171 ], [ 152.4162368, -32.4838739 ], [ 152.414002900000014, -32.4851962 ], [ 152.4120421, -32.4863154 ], [ 152.410190199999988, -32.4876325 ], [ 152.4093162, -32.4882963 ], [ 152.4086438, -32.488893 ], [ 152.408123499999988, -32.4893523 ], [ 152.4079858, -32.4894738 ], [ 152.407826148645739, -32.489614716299222 ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Head Beach", "id": "way192060355" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.546996413880635, -32.059280386946035 ], [ 152.546906799999988, -32.0592514 ], [ 152.5467995, -32.0592025 ], [ 152.5465313, -32.0594048 ], [ 152.546137, -32.0597935 ], [ 152.5458875, -32.060155 ], [ 152.5456139, -32.0605982 ], [ 152.5453484, -32.0610119 ], [ 152.545109700000012, -32.0613825 ], [ 152.5448683, -32.0618666 ], [ 152.5446537, -32.0623553 ], [ 152.544455199999987, -32.0629213 ], [ 152.5442433, -32.063326 ], [ 152.5439939, -32.0638419 ], [ 152.5437632, -32.0642534 ], [ 152.5435004, -32.065058 ], [ 152.543427900000012, -32.065283 ], [ 152.5433555, -32.0655626 ], [ 152.5432616, -32.0660195 ], [ 152.54315170000001, -32.0665605 ], [ 152.5431249, -32.0669242 ], [ 152.5431302, -32.0671992 ], [ 152.543149, -32.067722 ], [ 152.5432563, -32.068222 ], [ 152.5433797, -32.0686061 ], [ 152.543436, -32.0688425 ], [ 152.5435942, -32.0692494 ], [ 152.5437713, -32.0695403 ], [ 152.5440676, -32.0699722 ], [ 152.5442742, -32.0702063 ], [ 152.5444914, -32.0704142 ], [ 152.544744900000012, -32.0705506 ], [ 152.5449501, -32.0705893 ], [ 152.545099, -32.070587 ], [ 152.545286179049214, -32.070487853845435 ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Bar Beach", "id": "way192060358" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.60630289965107, -31.951676110574869 ], [ 152.6060832, -31.9520241 ], [ 152.6059115, -31.9524519 ], [ 152.6035726, -31.9554469 ], [ 152.602596299999988, -31.9563845 ], [ 152.599903399999988, -31.9607719 ], [ 152.599057499999986, -31.9625651 ], [ 152.5976698, -31.9656312 ], [ 152.5960122, -31.9678845 ], [ 152.5951172, -31.9687706 ], [ 152.594179700000012, -31.9702122 ], [ 152.5930443, -31.9711881 ], [ 152.590946300000013, -31.9727284 ], [ 152.589767, -31.9736003 ], [ 152.5888377, -31.9743671 ], [ 152.586654399999986, -31.9761463 ], [ 152.5865445, -31.9762032 ], [ 152.5862682, -31.9763921 ], [ 152.5823782, -31.9800515 ], [ 152.5818682, -31.9805313 ], [ 152.5782419, -31.9850359 ], [ 152.574991, -31.9896859 ], [ 152.5727487, -31.9936532 ], [ 152.572296599999987, -31.9950061 ], [ 152.5722295, -31.9953086 ], [ 152.57225360000001, -31.9955202 ], [ 152.5723529, -31.9956157 ], [ 152.572387175430265, -31.995684468976897 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way193180789" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.147641681301252, -32.718252896217436 ], [ 152.1477267, -32.7182472 ], [ 152.1478549, -32.7182474 ], [ 152.1479658, -32.7182476 ], [ 152.1483625, -32.7181287 ], [ 152.1487907, -32.7179088 ], [ 152.1491746, -32.7176066 ], [ 152.14952550000001, -32.7172788 ], [ 152.150168400000013, -32.7165517 ], [ 152.1504328, -32.7161624 ], [ 152.1506585, -32.7157417 ], [ 152.1507967, -32.7153917 ], [ 152.150871599999988, -32.7150123 ], [ 152.1508283, -32.7149927 ], [ 152.1507522912257, -32.714835228907077 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way193180790" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.157079586529505, -32.713689701776623 ], [ 152.157340299999987, -32.7136211 ], [ 152.157645, -32.713441 ], [ 152.157974, -32.713136 ], [ 152.158217, -32.7128068 ], [ 152.158429, -32.712405 ], [ 152.158656, -32.711797 ], [ 152.1587489, -32.7111803 ], [ 152.1587572, -32.7106377 ], [ 152.1590567, -32.7101691 ], [ 152.159628375449472, -32.709912337929104 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way193180796" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.131205966843851, -32.719390813857103 ], [ 152.131332, -32.719563 ], [ 152.131901, -32.719646 ], [ 152.1325742, -32.7196522 ], [ 152.133446, -32.7197662 ], [ 152.134693199999987, -32.7196904 ], [ 152.135174799999987, -32.7195176 ], [ 152.135618, -32.7191343 ], [ 152.135668624151663, -32.719104420204808 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way193180809" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.161920100882242, -32.709617037241721 ], [ 152.1619425, -32.7096284 ], [ 152.1622658, -32.7095395 ], [ 152.1631, -32.7114912 ], [ 152.164750700000013, -32.7140365 ], [ 152.165974299999988, -32.7153674 ], [ 152.167896899999988, -32.7170325 ], [ 152.1689615, -32.7178126 ], [ 152.1702661, -32.718572 ], [ 152.1711281, -32.7189834 ], [ 152.172013, -32.719301 ], [ 152.173398600000013, -32.7197086 ], [ 152.1748815, -32.7199363 ], [ 152.17616, -32.7199053 ], [ 152.177673700000014, -32.7197624 ], [ 152.1792203, -32.7195263 ], [ 152.179486200000014, -32.7193522 ], [ 152.1798162, -32.7192611 ], [ 152.1810672, -32.7188135 ], [ 152.181664399999988, -32.7184975 ], [ 152.182288699999987, -32.7181381 ], [ 152.182566379989908, -32.717829278328978 ] ] } }, +{ "type": "Feature", "properties": { "name": "Horseshoe Bay", "id": "way197880314" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.074966220649316, -36.423578049599747 ], [ 150.074896, -36.42379 ], [ 150.075192, -36.423917 ], [ 150.075666, -36.424243 ], [ 150.076183, -36.424519 ], [ 150.076453, -36.424644 ], [ 150.077431, -36.425019 ], [ 150.078017, -36.425185 ], [ 150.078316, -36.425242 ], [ 150.078915, -36.425111 ], [ 150.078877, -36.424842 ], [ 150.079076, -36.424846 ], [ 150.079362, -36.424931 ], [ 150.079564, -36.424957 ], [ 150.079581907425819, -36.424893313106594 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way197880316" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.058339333358049, -36.501166258606624 ], [ 150.058331, -36.501171 ], [ 150.058121, -36.501214 ], [ 150.058036, -36.501513 ], [ 150.058186, -36.501894 ], [ 150.05853, -36.502432 ], [ 150.058929, -36.502888 ], [ 150.059395, -36.503291 ], [ 150.059631, -36.503402 ], [ 150.059851, -36.50343 ], [ 150.060027206583442, -36.503292844605326 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way197880327" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.055025748158158, -36.4880387645102 ], [ 150.054818, -36.4881205 ], [ 150.054663, -36.49279 ], [ 150.054752, -36.493357 ], [ 150.054791, -36.49428 ], [ 150.055093, -36.495427 ], [ 150.055439, -36.495824 ], [ 150.055734, -36.496059 ], [ 150.055948816467264, -36.496120576055766 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way197880331" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.077835776616325, -36.433976345659268 ], [ 150.0776423, -36.4340878 ], [ 150.076986, -36.434666 ], [ 150.076756, -36.435153 ], [ 150.076509, -36.43542 ], [ 150.076414, -36.435561 ], [ 150.076126, -36.436175 ], [ 150.076058, -36.4362988 ], [ 150.075403, -36.437408 ], [ 150.075238, -36.437745 ], [ 150.075089, -36.4381 ], [ 150.074797, -36.438647 ], [ 150.074737, -36.438787 ], [ 150.074612, -36.439203 ], [ 150.074493, -36.439472 ], [ 150.074554, -36.439546 ], [ 150.074674707331013, -36.439601588902448 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way197880338" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.06657504683065, -36.415946140598216 ], [ 150.0665823, -36.4159556 ], [ 150.066694899999987, -36.4160138 ], [ 150.0666895, -36.4161412 ], [ 150.066652, -36.416316 ], [ 150.0666895, -36.4165297 ], [ 150.0668049, -36.4167779 ], [ 150.066961, -36.416981 ], [ 150.0671616, -36.4172161 ], [ 150.067289, -36.417326 ], [ 150.067411, -36.417317 ], [ 150.067437899999987, -36.4175269 ], [ 150.067395, -36.4176197 ], [ 150.0673118, -36.4176586 ], [ 150.067180400000012, -36.417678 ], [ 150.0670919, -36.4177773 ], [ 150.0670812, -36.417896 ], [ 150.067099899999988, -36.4180449 ], [ 150.06721, -36.418427 ], [ 150.06764, -36.41941 ], [ 150.069536, -36.421809 ], [ 150.070198, -36.422343 ], [ 150.071266, -36.422801 ], [ 150.071693, -36.422878 ], [ 150.072716, -36.4229073 ], [ 150.072878140602057, -36.422753888367097 ] ] } }, +{ "type": "Feature", "properties": { "name": "Baragoot Beach", "id": "way197880340" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.068914112124673, -36.462141654355761 ], [ 150.0687038, -36.4620272 ], [ 150.0684043, -36.4620457 ], [ 150.0675852, -36.4626296 ], [ 150.066880700000013, -36.4636009 ], [ 150.064601900000014, -36.4657967 ], [ 150.0627998, -36.4683371 ], [ 150.060713099999987, -36.472008 ], [ 150.0587902, -36.4756356 ], [ 150.05746640000001, -36.4789716 ], [ 150.0563982, -36.4820722 ], [ 150.055680700000011, -36.4849165 ], [ 150.0555733, -36.4855023 ], [ 150.055757199999988, -36.4860416 ], [ 150.0559993, -36.4862078 ], [ 150.056147, -36.48621 ], [ 150.056217355026149, -36.486160201536748 ] ] } }, +{ "type": "Feature", "properties": { "name": "Merry Beach", "id": "way201100094" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.375765000430221, -35.563497419990902 ], [ 150.375705900000014, -35.5635085 ], [ 150.3754927, -35.5635831 ], [ 150.375321, -35.5638133 ], [ 150.3748473, -35.5646339 ], [ 150.374786199999988, -35.5653367 ], [ 150.3748905, -35.5659969 ], [ 150.375164899999987, -35.5665491 ], [ 150.37573230000001, -35.5669696 ], [ 150.3758498, -35.5670411 ], [ 150.375938105182513, -35.567049040045823 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kioloa Beach", "id": "way201100421" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.381973265665636, -35.553293219110202 ], [ 150.381651, -35.5533404 ], [ 150.3812701, -35.5542997 ], [ 150.3811207, -35.5554303 ], [ 150.3811714, -35.556091 ], [ 150.3813141, -35.5567904 ], [ 150.3815376, -35.5574118 ], [ 150.3819423, -35.5578415 ], [ 150.382670499999989, -35.5581127 ], [ 150.383077500000013, -35.5580095 ], [ 150.383265599999987, -35.558183 ], [ 150.383334892554757, -35.55822398134702 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pretty Beach", "id": "way201101719" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.366687439473253, -35.570170712141035 ], [ 150.366649099999989, -35.5701259 ], [ 150.366531900000012, -35.5700075 ], [ 150.3661945, -35.5699688 ], [ 150.3658091, -35.5699813 ], [ 150.365174700000011, -35.5701176 ], [ 150.3647312, -35.5703018 ], [ 150.364492399999989, -35.5704454 ], [ 150.3642735, -35.5706685 ], [ 150.364270800000014, -35.5709742 ], [ 150.364334899999989, -35.5711453 ], [ 150.364362551147082, -35.571211842916313 ] ] } }, +{ "type": "Feature", "properties": { "name": "Island Beach", "id": "way201105069" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.363704661519364, -35.572218251231419 ], [ 150.363513399999988, -35.5723183 ], [ 150.3632216, -35.572228 ], [ 150.362938, -35.5723286 ], [ 150.3625848, -35.5726604 ], [ 150.362383099999988, -35.5729471 ], [ 150.3619564, -35.5734964 ], [ 150.3618488, -35.5738941 ], [ 150.361637699999989, -35.5747962 ], [ 150.361686, -35.5752901 ], [ 150.361793299999988, -35.575632 ], [ 150.361716300000012, -35.5757624 ], [ 150.3610999, -35.5758407 ], [ 150.3603798, -35.5760242 ], [ 150.3595493, -35.5763464 ], [ 150.35923168344047, -35.576604906939515 ] ] } }, +{ "type": "Feature", "properties": { "name": "Horseshoe Bay", "id": "way207996330" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.03979897189717, -30.882652155194613 ], [ 153.0397482, -30.8827054 ], [ 153.0397132, -30.8827592 ], [ 153.0396356, -30.8827946 ], [ 153.0395205, -30.8828553 ], [ 153.0394933, -30.8829401 ], [ 153.039503200000013, -30.88301 ], [ 153.039553399999988, -30.8830992 ], [ 153.0396021, -30.8831683 ], [ 153.03967750000001, -30.8832157 ], [ 153.0397697, -30.8832431 ], [ 153.0398217, -30.8832776 ], [ 153.0398636, -30.8833308 ], [ 153.039920599999988, -30.8833769 ], [ 153.0400211, -30.8834215 ], [ 153.0401703, -30.8834402 ], [ 153.0402877, -30.8834675 ], [ 153.040435800000012, -30.8834822 ], [ 153.0405726, -30.8834848 ], [ 153.0407151, -30.8834646 ], [ 153.0408391, -30.8834071 ], [ 153.0409028, -30.8833639 ], [ 153.0409429, -30.8833031 ], [ 153.0409659, -30.8832281 ], [ 153.0409579, -30.8831624 ], [ 153.040996400000012, -30.8829806 ], [ 153.040999880331583, -30.882957355712907 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach\/Trial Bay", "id": "way207998312" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.042694372022822, -30.882865948708119 ], [ 153.042723599999988, -30.8830731 ], [ 153.0427949, -30.8832248 ], [ 153.0430759, -30.8832942 ], [ 153.0435187, -30.8832832 ], [ 153.043847699999986, -30.8833003 ], [ 153.0442232, -30.8834798 ], [ 153.0445619, -30.8837546 ], [ 153.0450387, -30.8840104 ], [ 153.0459414, -30.884405 ], [ 153.047836100000012, -30.8851724 ], [ 153.050654900000012, -30.8860283 ], [ 153.0531049, -30.8865967 ], [ 153.055521199999987, -30.8869099 ], [ 153.057305500000012, -30.8869476 ], [ 153.0585525, -30.8869331 ], [ 153.059489500000012, -30.8868038 ], [ 153.0606732, -30.8865992 ], [ 153.06214, -30.8861955 ], [ 153.063085199999989, -30.885905 ], [ 153.064366799999988, -30.8854391 ], [ 153.0656845, -30.8847284 ], [ 153.0665574, -30.8841273 ], [ 153.067443, -30.883402 ], [ 153.068160400000011, -30.882673 ], [ 153.0686509, -30.8820499 ], [ 153.0688562, -30.8816446 ], [ 153.069041199999987, -30.8812995 ], [ 153.06929550000001, -30.880863 ], [ 153.0695101, -30.8805106 ], [ 153.0696546, -30.8802148 ], [ 153.0697644, -30.8799603 ], [ 153.069823500000012, -30.8797485 ], [ 153.0698401, -30.8795871 ], [ 153.069842200000011, -30.8794153 ], [ 153.069806, -30.8791449 ], [ 153.0697443, -30.8790243 ], [ 153.069657, -30.8789092 ], [ 153.069554, -30.8788146 ], [ 153.069425599999988, -30.878708 ], [ 153.0693631, -30.8786602 ], [ 153.0692947, -30.8786203 ], [ 153.069188200000013, -30.8785754 ], [ 153.068999375371021, -30.878450168868426 ] ] } }, +{ "type": "Feature", "properties": { "name": "Austinmer Boatharbour", "id": "way216307152" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.941480041825116, -34.298707575382949 ], [ 150.941484, -34.2987298 ], [ 150.9415027, -34.298814 ], [ 150.941533600000014, -34.2989181 ], [ 150.9415215, -34.2989957 ], [ 150.9415175, -34.2990721 ], [ 150.9415376, -34.2991452 ], [ 150.9415524, -34.2991862 ], [ 150.9415687, -34.2992106 ], [ 150.9415761, -34.2992616 ], [ 150.941615500000012, -34.2993134 ], [ 150.9416369, -34.2993491 ], [ 150.941602, -34.2994244 ], [ 150.941573799999986, -34.2994499 ], [ 150.9415497, -34.2994765 ], [ 150.9415416, -34.2995119 ], [ 150.9415162, -34.2995419 ], [ 150.9414759, -34.2995651 ], [ 150.9414478, -34.2995917 ], [ 150.9413405, -34.2996826 ], [ 150.941339, -34.29974 ], [ 150.941351700000013, -34.2997699 ], [ 150.941384699999986, -34.2998476 ], [ 150.9414303, -34.3000061 ], [ 150.9414504, -34.3001445 ], [ 150.9415108, -34.3002642 ], [ 150.941580499999986, -34.3004226 ], [ 150.94164090000001, -34.3005013 ], [ 150.941716, -34.3005877 ], [ 150.9417991, -34.3006863 ], [ 150.94184340000001, -34.3007683 ], [ 150.9418944, -34.300837 ], [ 150.941952, -34.3008735 ], [ 150.9420446, -34.3008846 ], [ 150.9421304, -34.3008913 ], [ 150.942166665245082, -34.300908047949548 ] ] } }, +{ "type": "Feature", "properties": { "name": "Blueys Beach", "id": "way222144734" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.540712868383736, -32.349245112015687 ], [ 152.5405021, -32.3492729 ], [ 152.5393255, -32.3499996 ], [ 152.537407300000012, -32.3519624 ], [ 152.536102199999988, -32.3539086 ], [ 152.5344806, -32.3559215 ], [ 152.534519768803335, -32.356130367272456 ] ] } }, +{ "type": "Feature", "properties": { "name": "Boomerang Beach", "id": "way222145626" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.548260475515121, -32.335763302695653 ], [ 152.5480461, -32.3357569 ], [ 152.5471661, -32.3363333 ], [ 152.5457819, -32.3374277 ], [ 152.545368599999989, -32.3378238 ], [ 152.5447842, -32.3384898 ], [ 152.5431549, -32.3408211 ], [ 152.541562, -32.3436246 ], [ 152.5409397, -32.3451721 ], [ 152.5407888, -32.3463075 ], [ 152.540983594248502, -32.346392446816495 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way222145628" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.543201394465427, -32.329506485817674 ], [ 152.543411099999986, -32.3295412 ], [ 152.5453469, -32.3289146 ], [ 152.54590060000001, -32.3281042 ], [ 152.545737295368752, -32.327968120307276 ] ] } }, +{ "type": "Feature", "properties": { "name": "Elizabeth Beach", "id": "way222267313" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.534743783782545, -32.327247833138415 ], [ 152.5345608, -32.327384 ], [ 152.534877099999989, -32.3275826 ], [ 152.535224, -32.3280192 ], [ 152.537017600000013, -32.3296613 ], [ 152.538655799999987, -32.3305324 ], [ 152.5402451, -32.3308656 ], [ 152.540633500000013, -32.3307624 ], [ 152.5407496, -32.3305939 ], [ 152.54075229668905, -32.330586384878089 ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandbar Beach", "id": "way222267320" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.530421297302894, -32.379164159143066 ], [ 152.5302388, -32.3790552 ], [ 152.5292141, -32.3793354 ], [ 152.5281977, -32.3798776 ], [ 152.5269188, -32.381294 ], [ 152.5237014, -32.3858044 ], [ 152.5214114, -32.3897917 ], [ 152.5199687, -32.3931185 ], [ 152.5186519, -32.3964978 ], [ 152.5178823, -32.3990375 ], [ 152.5176573, -32.4011571 ], [ 152.5179513, -32.4016547 ], [ 152.518156267726596, -32.40159843563687 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222267325" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.517673343895041, -32.40484408559459 ], [ 152.5174624, -32.4048172 ], [ 152.5171493, -32.4051322 ], [ 152.5169028, -32.4066226 ], [ 152.516933932696816, -32.406833012936978 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222267326" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.516455809711147, -32.407796741409776 ], [ 152.5162566, -32.4078711 ], [ 152.5161034, -32.409772 ], [ 152.5161434, -32.4099858 ], [ 152.51615, -32.4101601 ], [ 152.516335262837543, -32.41026437551831 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222267328" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.517168309341059, -32.418660337040102 ], [ 152.516956099999987, -32.4186743 ], [ 152.516949399999987, -32.4191972 ], [ 152.5171226, -32.4196471 ], [ 152.517162246328127, -32.419855944424484 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222267330" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.516912772586636, -32.415468952572184 ], [ 152.5167031, -32.4155041 ], [ 152.5165371, -32.4163591 ], [ 152.5165891, -32.4165381 ], [ 152.516785002954123, -32.416620934230075 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222267334" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.517201187813328, -32.413409916838901 ], [ 152.517, -32.4134791 ], [ 152.5168151, -32.4136951 ], [ 152.5167151, -32.4140541 ], [ 152.516841046611205, -32.414259665726902 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222390016" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.558512798939205, -32.232892016719113 ], [ 152.5583011, -32.2328767 ], [ 152.554084, -32.2363904 ], [ 152.5476694, -32.2431078 ], [ 152.541726899999986, -32.2507171 ], [ 152.535867700000011, -32.2596878 ], [ 152.5308971, -32.2689159 ], [ 152.5265096, -32.279223 ], [ 152.5242048, -32.2862189 ], [ 152.522733100000011, -32.2946227 ], [ 152.522038900000013, -32.3008312 ], [ 152.5217664, -32.3052278 ], [ 152.5215799, -32.3082731 ], [ 152.521521, -32.3112686 ], [ 152.5221101, -32.3119573 ], [ 152.522307735773921, -32.312035248944973 ] ] } }, +{ "type": "Feature", "properties": { "name": "Manly Beach", "id": "way223789521" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.288325533570941, -33.79558347554353 ], [ 151.288386800000012, -33.795792 ], [ 151.2885758, -33.7964039 ], [ 151.2887016, -33.796747 ], [ 151.288776, -33.796929 ], [ 151.288974, -33.797304 ], [ 151.289272, -33.797795 ], [ 151.289488, -33.798128 ], [ 151.289688, -33.79846 ], [ 151.289754, -33.798555 ], [ 151.289825, -33.798647 ], [ 151.289862, -33.798691 ], [ 151.289907, -33.798742 ], [ 151.289954, -33.798793 ], [ 151.290003, -33.798842 ], [ 151.290053, -33.79889 ], [ 151.290104, -33.798937 ], [ 151.290192, -33.799014 ], [ 151.290237, -33.799051 ], [ 151.290284, -33.799087 ], [ 151.290332, -33.799121 ], [ 151.290368, -33.799145 ], [ 151.290442, -33.799191 ], [ 151.290518, -33.799233 ], [ 151.290573, -33.79926 ], [ 151.29063, -33.799285 ], [ 151.290688, -33.799308 ], [ 151.290746, -33.799329 ], [ 151.290806, -33.799346 ], [ 151.290864, -33.79936 ], [ 151.290922, -33.79937 ], [ 151.290951, -33.799372 ], [ 151.291001, -33.79937 ], [ 151.291052, -33.799363 ], [ 151.291103, -33.79935 ], [ 151.2911819, -33.7993462 ], [ 151.291206260510819, -33.799342005474962 ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Bar Beach", "id": "way224198013" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.691228177894885, -31.877453302092185 ], [ 152.6910394, -31.8775509 ], [ 152.690393199999988, -31.8785713 ], [ 152.6899038, -31.8792608 ], [ 152.6889809, -31.8800789 ], [ 152.687868900000012, -31.8810589 ], [ 152.6874095, -31.8816594 ], [ 152.6863142, -31.8827417 ], [ 152.6853907, -31.8835648 ], [ 152.684622499999989, -31.8840734 ], [ 152.6838937, -31.8844426 ], [ 152.6830401, -31.8850064 ], [ 152.682120700000013, -31.8855585 ], [ 152.6809446, -31.8865352 ], [ 152.6798412, -31.8873251 ], [ 152.678652, -31.8881616 ], [ 152.6768131, -31.889188 ], [ 152.6766144, -31.8893493 ], [ 152.6755512, -31.8903104 ], [ 152.6750669, -31.8906581 ], [ 152.6738062, -31.8913529 ], [ 152.6722232, -31.8922266 ], [ 152.6708883, -31.8930974 ], [ 152.670454299999989, -31.8934531 ], [ 152.6698884, -31.8939292 ], [ 152.6692209, -31.8942834 ], [ 152.668840100000011, -31.8944885 ], [ 152.667700200000013, -31.8953557 ], [ 152.6674735, -31.8954915 ], [ 152.6664371, -31.8961324 ], [ 152.66594, -31.89663 ], [ 152.665354, -31.8970531 ], [ 152.665318899999988, -31.8970785 ], [ 152.6638417, -31.8981569 ], [ 152.6615356, -31.8999138 ], [ 152.6603164, -31.900895 ], [ 152.659473, -31.9015746 ], [ 152.6588782, -31.9019052 ], [ 152.6579185, -31.9026451 ], [ 152.657011899999986, -31.9031949 ], [ 152.656233500000013, -31.9041362 ], [ 152.653998800000011, -31.9056737 ], [ 152.6527015, -31.9066004 ], [ 152.6520416, -31.9072934 ], [ 152.65007, -31.90842 ], [ 152.64994, -31.90854 ], [ 152.64902, -31.9091981 ], [ 152.6478639, -31.9101297 ], [ 152.64706, -31.91071 ], [ 152.6463, -31.91136 ], [ 152.64614, -31.91149 ], [ 152.64601, -31.91162 ], [ 152.64524, -31.91226 ], [ 152.64509, -31.91239 ], [ 152.64494, -31.91252 ], [ 152.64419, -31.91316 ], [ 152.6435032, -31.9136954 ], [ 152.6430091, -31.9140367 ], [ 152.6417152, -31.9151111 ], [ 152.641032, -31.9156273 ], [ 152.640479199999987, -31.9161162 ], [ 152.639178, -31.9172346 ], [ 152.6386546, -31.9176343 ], [ 152.6380586, -31.9181811 ], [ 152.6373836, -31.9188459 ], [ 152.63678, -31.91944 ], [ 152.63663, -31.91956 ], [ 152.63587, -31.9202 ], [ 152.63572, -31.92032 ], [ 152.63496, -31.92097 ], [ 152.63466, -31.92123 ], [ 152.6336, -31.92213 ], [ 152.6323461, -31.9233106 ], [ 152.6314472, -31.9241743 ], [ 152.63056, -31.92494 ], [ 152.62982, -31.92559 ], [ 152.62921, -31.9261 ], [ 152.6283, -31.92712 ], [ 152.627322600000014, -31.9280206 ], [ 152.62679, -31.92866 ], [ 152.6263427, -31.9291322 ], [ 152.6253532, -31.9302186 ], [ 152.6241652, -31.9314986 ], [ 152.62346, -31.93225 ], [ 152.6222646, -31.9334492 ], [ 152.6215559, -31.9341824 ], [ 152.6208691, -31.9348401 ], [ 152.6203457, -31.9353911 ], [ 152.6198118, -31.9361191 ], [ 152.619293, -31.9365536 ], [ 152.6188869, -31.937033 ], [ 152.6184673, -31.9374364 ], [ 152.61801, -31.93789 ], [ 152.61755, -31.93852 ], [ 152.6168879, -31.9391762 ], [ 152.61649, -31.9397 ], [ 152.6159084, -31.9403988 ], [ 152.61559, -31.94072 ], [ 152.6146762, -31.9416592 ], [ 152.61377, -31.94251 ], [ 152.613416199999989, -31.9429033 ], [ 152.6123598, -31.9440189 ], [ 152.6117467, -31.9446199 ], [ 152.6109696, -31.9454337 ], [ 152.6097183, -31.9469426 ], [ 152.60880610000001, -31.948243 ], [ 152.6084124, -31.9488043 ], [ 152.6079822, -31.9491201 ], [ 152.607862147425891, -31.949294110184137 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pippi Beach", "id": "way226380327" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.371058116731433, -29.43944732845312 ], [ 153.370961599999987, -29.4393795 ], [ 153.3708581, -29.4393969 ], [ 153.369907500000011, -29.4397667 ], [ 153.3692615, -29.4402317 ], [ 153.368202200000013, -29.4411002 ], [ 153.3679698, -29.4415048 ], [ 153.3676275, -29.442275 ], [ 153.367502300000012, -29.4426881 ], [ 153.3671128, -29.4431758 ], [ 153.366914, -29.4436371 ], [ 153.366350899999986, -29.4444333 ], [ 153.365875100000011, -29.4450709 ], [ 153.3649021, -29.4468694 ], [ 153.364283199999988, -29.4480896 ], [ 153.363794899999988, -29.4493608 ], [ 153.3632518, -29.4506221 ], [ 153.3628591, -29.4517169 ], [ 153.3627725, -29.4520383 ], [ 153.3627232, -29.4523491 ], [ 153.3627305, -29.452564 ], [ 153.3627731, -29.452851 ], [ 153.3628579, -29.4530806 ], [ 153.3629114, -29.4530802 ], [ 153.3629613, -29.4531339 ], [ 153.3630202, -29.4531719 ], [ 153.3630499, -29.4531312 ], [ 153.363059242717242, -29.453124644612753 ] ] } }, +{ "type": "Feature", "properties": { "name": "Yamba Main Beach", "id": "way226382793" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.364254189396632, -29.434526207158608 ], [ 153.3642558, -29.4345289 ], [ 153.3643013, -29.4345841 ], [ 153.3643156, -29.4346502 ], [ 153.3642982, -29.4347275 ], [ 153.364558, -29.4353905 ], [ 153.364699699999989, -29.435686 ], [ 153.364823699999988, -29.4358937 ], [ 153.364963100000011, -29.4360409 ], [ 153.3650653, -29.4359684 ], [ 153.365142863115949, -29.435940172111902 ] ] } }, +{ "type": "Feature", "properties": { "name": "Convent Beach", "id": "way226389111" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.366822757524488, -29.437862621919919 ], [ 153.3668291, -29.4378692 ], [ 153.366919700000011, -29.4379163 ], [ 153.3668974, -29.4379948 ], [ 153.3668841, -29.4380595 ], [ 153.367219, -29.4383512 ], [ 153.3676463, -29.4386546 ], [ 153.3680654, -29.4388414 ], [ 153.368203200000011, -29.4387487 ], [ 153.36823947432967, -29.438730876220308 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nelsons Beach", "id": "way230385239" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.697320726989062, -35.071691651307901 ], [ 150.6973171, -35.0716875 ], [ 150.697308099999987, -35.0715524 ], [ 150.6972562, -35.0714819 ], [ 150.6971711, -35.0714998 ], [ 150.6970583, -35.0715416 ], [ 150.6967469, -35.0717235 ], [ 150.696415699999989, -35.0719392 ], [ 150.695804, -35.0726279 ], [ 150.6951281, -35.0734908 ], [ 150.6941616, -35.0752387 ], [ 150.6932424, -35.0772383 ], [ 150.6926747, -35.0786902 ], [ 150.6924179, -35.0794397 ], [ 150.692471350769836, -35.079652567870667 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way243531227" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.092860339340348, -32.78896916017122 ], [ 152.0928259, -32.7889257 ], [ 152.092720030871902, -32.789000118978237 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way243532425" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.112357158331548, -32.787992069208222 ], [ 152.1120235, -32.7878512 ], [ 152.111654, -32.7880969 ], [ 152.111411299999986, -32.7884679 ], [ 152.111379, -32.788772 ], [ 152.111435, -32.789022 ], [ 152.111926359091569, -32.789147959041614 ] ] } }, +{ "type": "Feature", "properties": { "name": "Miners Beach North", "id": "way250066030" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.936322006361451, -31.462215544239491 ], [ 152.9361371, -31.4620732 ], [ 152.935782499999988, -31.4622846 ], [ 152.935685400000011, -31.4626004 ], [ 152.9352868, -31.4631499 ], [ 152.935635499999989, -31.463413 ], [ 152.9353045, -31.4635709 ], [ 152.934796, -31.4635759 ], [ 152.9346179, -31.4637319 ], [ 152.934841422356868, -31.463816116785789 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way250066057" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.934793371793916, -31.463578202078335 ], [ 152.9346179, -31.4637319 ], [ 152.9350484, -31.4638941 ], [ 152.9350728, -31.464125 ], [ 152.935080199999987, -31.4641532 ], [ 152.935041899999987, -31.4643421 ], [ 152.9348494, -31.4644451 ], [ 152.9348267, -31.4645599 ], [ 152.935016457814754, -31.464650724253218 ] ] } }, +{ "type": "Feature", "properties": { "name": "Miners Beach South", "id": "way250066218" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.935167724896615, -31.465043397762443 ], [ 152.9351376, -31.4650845 ], [ 152.934959600000013, -31.4650749 ], [ 152.9347348, -31.4654034 ], [ 152.9346131, -31.4657429 ], [ 152.934429099999988, -31.4660554 ], [ 152.9346737, -31.4662293 ], [ 152.934746600000011, -31.4663615 ], [ 152.9345868, -31.4664906 ], [ 152.9343196, -31.4663844 ], [ 152.934187900000012, -31.4665871 ], [ 152.9342346, -31.4666985 ], [ 152.934359, -31.4667055 ], [ 152.934569132800476, -31.466717155000353 ] ] } }, +{ "type": "Feature", "properties": { "name": "Flynns Beach", "id": "way251279951" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.926362723557787, -31.44131072191848 ], [ 152.9263049, -31.4412976 ], [ 152.926228400000014, -31.4411773 ], [ 152.926126900000014, -31.441149 ], [ 152.926077600000013, -31.4412505 ], [ 152.9262723, -31.4415645 ], [ 152.9263249, -31.4418721 ], [ 152.926438600000012, -31.4422593 ], [ 152.9266108, -31.4428323 ], [ 152.9267819, -31.4431728 ], [ 152.927013100000011, -31.4432268 ], [ 152.927180978509824, -31.443099961577182 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nobby's Beach", "id": "way251280062" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.92917620882875, -31.44484000602349 ], [ 152.9291298, -31.4448496 ], [ 152.9290473, -31.4450062 ], [ 152.9290253, -31.4451613 ], [ 152.9291369, -31.4454812 ], [ 152.929317700000013, -31.4459604 ], [ 152.9294818, -31.4462368 ], [ 152.929734, -31.4464167 ], [ 152.9297918, -31.4464362 ], [ 152.93007510000001, -31.446532 ], [ 152.9305354, -31.4466222 ], [ 152.930662, -31.4467951 ], [ 152.9306325, -31.447045 ], [ 152.9312247, -31.4471521 ], [ 152.9316421, -31.4472198 ], [ 152.931965, -31.4472482 ], [ 152.932076213105091, -31.44705817831251 ] ] } }, +{ "type": "Feature", "properties": { "name": "Rocky Beach", "id": "way251280286" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.926113625416775, -31.436537697365083 ], [ 152.9258936, -31.4366073 ], [ 152.9256334, -31.4368096 ], [ 152.9252956, -31.4373338 ], [ 152.925204799999989, -31.4376197 ], [ 152.9253095, -31.4379574 ], [ 152.9253213, -31.4380233 ], [ 152.9253682, -31.4382865 ], [ 152.9254171, -31.4386435 ], [ 152.92538110000001, -31.4388728 ], [ 152.9255279, -31.4391955 ], [ 152.925576299999989, -31.4392519 ], [ 152.9256397, -31.4393026 ], [ 152.925693599999988, -31.439345 ], [ 152.9257676, -31.4393854 ], [ 152.9257949, -31.4394476 ], [ 152.9257854, -31.4395122 ], [ 152.9257417, -31.4395552 ], [ 152.925696001343852, -31.439583167255165 ] ] } }, +{ "type": "Feature", "properties": { "name": "Turners Beach", "id": "way251436784" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.363647117074208, -29.428410287785951 ], [ 153.363468, -29.4285124 ], [ 153.3633822, -29.4289796 ], [ 153.3633393, -29.4295403 ], [ 153.3633178, -29.429886 ], [ 153.3633178, -29.4303159 ], [ 153.3634466, -29.4307083 ], [ 153.363511, -29.4309793 ], [ 153.3636182, -29.4312036 ], [ 153.363826754613825, -29.43122115309874 ] ] } }, +{ "type": "Feature", "properties": { "name": "Boat Harbour Beach", "id": "way253258716" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.194004464520049, -34.03655684008659 ], [ 151.193965, -34.036537 ], [ 151.193596, -34.036355 ], [ 151.192813, -34.03598 ], [ 151.192607, -34.035883 ], [ 151.192398, -34.035789 ], [ 151.192186, -34.0357 ], [ 151.191924, -34.035601 ], [ 151.191659, -34.035508 ], [ 151.19139, -34.03542 ], [ 151.190467, -34.035135 ], [ 151.190274, -34.035078 ], [ 151.190081, -34.035024 ], [ 151.189886, -34.034975 ], [ 151.189679, -34.034928 ], [ 151.189471, -34.034886 ], [ 151.189262, -34.034847 ], [ 151.189052, -34.034811 ], [ 151.188841, -34.034778 ], [ 151.188463, -34.034725 ], [ 151.188274, -34.034702 ], [ 151.188084, -34.034682 ], [ 151.187894, -34.034666 ], [ 151.187692, -34.034654 ], [ 151.187491, -34.034648 ], [ 151.187086, -34.034641 ], [ 151.186884, -34.034634 ], [ 151.186643, -34.034619 ], [ 151.186159, -34.034576 ], [ 151.185918, -34.034563 ], [ 151.185679, -34.034567 ], [ 151.185426, -34.034592 ], [ 151.185176, -34.034635 ], [ 151.184926, -34.034687 ], [ 151.184676, -34.034743 ], [ 151.184153, -34.034854 ], [ 151.183906908797525, -34.034912036133676 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wanda Beach", "id": "way253258718" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.166938588150913, -34.039927231557385 ], [ 151.166789, -34.040009 ], [ 151.166407, -34.040211 ], [ 151.166286, -34.040283 ], [ 151.166174, -34.040364 ], [ 151.166102, -34.040403 ], [ 151.165819, -34.040564 ], [ 151.165634, -34.040667 ], [ 151.165543, -34.040719 ], [ 151.165453, -34.040774 ], [ 151.165368, -34.040832 ], [ 151.1652666, -34.0408344 ], [ 151.1651564, -34.0409023 ], [ 151.1648923, -34.0411195 ], [ 151.164702799999986, -34.0413762 ], [ 151.1644694, -34.0415651 ], [ 151.1641046, -34.0418163 ], [ 151.1634046, -34.0425164 ], [ 151.163310700000011, -34.0427142 ], [ 151.16327050000001, -34.042892 ], [ 151.1625731, -34.0434987 ], [ 151.162428299999988, -34.0435832 ], [ 151.1621788, -34.0438721 ], [ 151.162001800000013, -34.0440855 ], [ 151.1619186, -34.0442321 ], [ 151.1613983, -34.0445989 ], [ 151.1611328, -34.0447989 ], [ 151.1607948, -34.0451611 ], [ 151.1606392, -34.0453701 ], [ 151.160504687703167, -34.045542099330362 ] ] } }, +{ "type": "Feature", "properties": { "name": "Washerwomens Beach", "id": "way255187214" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.532128229800804, -35.242757496488004 ], [ 150.533043, -35.243838 ], [ 150.533285, -35.244026 ], [ 150.533908, -35.244474 ], [ 150.535088, -35.244968 ], [ 150.535535399999986, -35.2448145 ], [ 150.535751499308049, -35.244654465915467 ] ] } }, +{ "type": "Feature", "properties": { "name": "Washerwomens Beach", "id": "way255187215" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.531082917327211, -35.239000353543588 ], [ 150.53096450000001, -35.2392282 ], [ 150.5308772, -35.2393963 ], [ 150.5308791, -35.2399723 ], [ 150.531155, -35.24082 ], [ 150.53136090000001, -35.2414242 ], [ 150.531513569758943, -35.241846750860091 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way255187221" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.536344375475693, -35.244303333001298 ], [ 150.536349, -35.244304 ], [ 150.5369138, -35.2446259 ], [ 150.5374036, -35.2449117 ], [ 150.5382012, -35.2449117 ], [ 150.538747, -35.2447345 ], [ 150.5390549, -35.2444259 ], [ 150.539103480947716, -35.244297211093681 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way257204435" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.904442669296316, -34.418965895497045 ], [ 150.904227, -34.418996 ], [ 150.903947, -34.4193632 ], [ 150.903954, -34.419726 ], [ 150.904056, -34.419884 ], [ 150.904184500000014, -34.4202543 ], [ 150.9042634, -34.4207464 ], [ 150.904498, -34.421099 ], [ 150.9048108, -34.4213234 ], [ 150.905157, -34.4214772 ], [ 150.905942, -34.42171 ], [ 150.906094786179125, -34.421554809091809 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way265475636" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.252114647507483, -35.718871071533449 ], [ 150.252111, -35.718806 ], [ 150.252045, -35.71866 ], [ 150.251607, -35.718729 ], [ 150.251503, -35.718787 ], [ 150.2516226252487, -35.718942319879325 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pebbly Beach", "id": "way266776936" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.547658025253668, -32.07336215962664 ], [ 152.547606800000011, -32.0734133 ], [ 152.5474969, -32.0734997 ], [ 152.5473466, -32.0737656 ], [ 152.547019400000011, -32.074011 ], [ 152.54679680000001, -32.0743542 ], [ 152.5467056, -32.0744997 ], [ 152.5464052, -32.0746429 ], [ 152.546019, -32.0749338 ], [ 152.5459036, -32.0750747 ], [ 152.5459036, -32.0752156 ], [ 152.545723900000013, -32.0753133 ], [ 152.5455737, -32.0754179 ], [ 152.545628601930559, -32.075622423191767 ] ] } }, +{ "type": "Feature", "properties": { "name": "Myrtle Beach", "id": "way279280848" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.300964629111917, -35.683113943808408 ], [ 150.3008022, -35.6829642 ], [ 150.3005755, -35.6827552 ], [ 150.3002644, -35.6828859 ], [ 150.2995134, -35.6830602 ], [ 150.2986765, -35.683557 ], [ 150.298215199999987, -35.683923 ], [ 150.2980859, -35.6841203 ], [ 150.2981615, -35.6843151 ], [ 150.2980221, -35.6845243 ], [ 150.2979255, -35.6848641 ], [ 150.2977646, -35.68496 ], [ 150.2976573, -35.6848554 ], [ 150.2973783, -35.6849948 ], [ 150.2969706, -35.6854654 ], [ 150.2967341, -35.6858458 ], [ 150.2965951, -35.6862845 ], [ 150.2966917, -35.6865895 ], [ 150.2970345, -35.6868305 ], [ 150.2973053, -35.6871165 ], [ 150.297457387660842, -35.687277042312893 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Head Beach", "id": "way283571937" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.273750267928364, -35.719797966401067 ], [ 150.2737266, -35.7197708 ], [ 150.2737123, -35.7195802 ], [ 150.273464100000012, -35.7192971 ], [ 150.2730848, -35.7190825 ], [ 150.2726686, -35.7189873 ], [ 150.272059399999989, -35.7188883 ], [ 150.271503, -35.718851 ], [ 150.271022499999987, -35.7188921 ], [ 150.270509800000013, -35.7189966 ], [ 150.2700384, -35.7191105 ], [ 150.2696905, -35.7192524 ], [ 150.2694588, -35.7193969 ], [ 150.26927950000001, -35.719497 ], [ 150.2690757, -35.7195792 ], [ 150.269072284355104, -35.719579156235184 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way303942662" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.032398280410547, -30.502760903754201 ], [ 153.0324202, -30.5029691 ], [ 153.0318661, -30.5050566 ], [ 153.0315082, -30.5067736 ], [ 153.0307005, -30.5088938 ], [ 153.0301957, -30.5113168 ], [ 153.0299628, -30.5118848 ], [ 153.0300921, -30.5124158 ], [ 153.0298244, -30.5128355 ], [ 153.0297397, -30.5148689 ], [ 153.029455399999989, -30.5173034 ], [ 153.029388, -30.5180813 ], [ 153.029388, -30.5195957 ], [ 153.028982, -30.5207398 ], [ 153.0282774, -30.5227255 ], [ 153.0280713, -30.5234126 ], [ 153.028011389422744, -30.523612266950128 ] ] } }, +{ "type": "Feature", "properties": { "name": "Clarkes Beach", "id": "way306312022" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.612862567388703, -28.640169717067426 ], [ 153.6128641, -28.6401699 ], [ 153.6131288, -28.6399581 ], [ 153.6139786, -28.6399866 ], [ 153.615840100000014, -28.6406156 ], [ 153.6176779, -28.6409301 ], [ 153.6189987, -28.6413835 ], [ 153.6210384, -28.6416227 ], [ 153.622938799999986, -28.6415789 ], [ 153.6241528, -28.6414065 ], [ 153.626026599999989, -28.6407371 ], [ 153.627108, -28.6400374 ], [ 153.6272974, -28.639206 ], [ 153.6278145, -28.6383378 ], [ 153.628266599999989, -28.6374469 ], [ 153.628379200000012, -28.6370555 ], [ 153.6284032, -28.636972 ], [ 153.6284268, -28.6368399 ], [ 153.6283742, -28.6367831 ], [ 153.628246508526814, -28.636840520038469 ] ] } }, +{ "type": "Feature", "properties": { "name": "Belongil Beach", "id": "way306312031" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.568729864150725, -28.590469532875172 ], [ 153.5688094, -28.5906903 ], [ 153.572341, -28.5978382 ], [ 153.5753813, -28.6030549 ], [ 153.5780445, -28.6070385 ], [ 153.5820511, -28.6128532 ], [ 153.586748199999988, -28.6192471 ], [ 153.5897579, -28.6230912 ], [ 153.5909499, -28.624588 ], [ 153.5914788, -28.6252893 ], [ 153.5976325, -28.6309967 ], [ 153.598081799999989, -28.6314134 ], [ 153.6002904, -28.6334618 ], [ 153.600779499999987, -28.6338608 ], [ 153.6018765, -28.6347558 ], [ 153.6033507, -28.6357742 ], [ 153.6036895, -28.6362123 ], [ 153.6041065, -28.636456 ], [ 153.6045655, -28.6365259 ], [ 153.6049968, -28.6366049 ], [ 153.605341399999986, -28.6366758 ], [ 153.605910599999987, -28.6369979 ], [ 153.6065436, -28.637642 ], [ 153.6075285, -28.6382324 ], [ 153.6092097, -28.6390021 ], [ 153.6095541, -28.6390445 ], [ 153.6098797, -28.6391255 ], [ 153.610279, -28.639455 ], [ 153.611027, -28.6397533 ], [ 153.61204570000001, -28.640087 ], [ 153.612242327825157, -28.640099378325505 ] ] } }, +{ "type": "Feature", "properties": { "name": "Surf Beach", "id": "way307028394" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.21194449026919, -35.75645408068381 ], [ 150.2119184, -35.7566747 ], [ 150.211552, -35.7569092 ], [ 150.2113602, -35.7571582 ], [ 150.211288700000011, -35.7575342 ], [ 150.211344700000012, -35.7581428 ], [ 150.2115964, -35.7600415 ], [ 150.2116369, -35.7601059 ], [ 150.2116815, -35.7601769 ], [ 150.21190150000001, -35.7602609 ], [ 150.2122904, -35.760311 ], [ 150.212401, -35.760161 ], [ 150.212461037930154, -35.760117416315403 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307135299" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.208403921441146, -35.736900620178659 ], [ 150.208548799999988, -35.7370678 ], [ 150.208686, -35.737226 ], [ 150.2092242, -35.7376743 ], [ 150.2096261, -35.7379463 ], [ 150.210085, -35.738169 ], [ 150.210294975145558, -35.738238237494123 ] ] } }, +{ "type": "Feature", "properties": { "name": "Caseys Beach", "id": "way307135300" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.207519064560927, -35.731848776821799 ], [ 150.207359, -35.732006 ], [ 150.207376, -35.732218 ], [ 150.207266, -35.732719 ], [ 150.2071699, -35.7331007 ], [ 150.207185, -35.733423 ], [ 150.207171, -35.733854 ], [ 150.207204100000013, -35.7346223 ], [ 150.20743250000001, -35.7353883 ], [ 150.207542077806721, -35.735580405656989 ] ] } }, +{ "type": "Feature", "properties": { "name": "Corrigans Beach", "id": "way307140092" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.198812183147567, -35.719189085377401 ], [ 150.198604, -35.719114 ], [ 150.1983277, -35.719487 ], [ 150.1981506, -35.720251 ], [ 150.1981064, -35.7206589 ], [ 150.198163099999988, -35.7212716 ], [ 150.197994, -35.721746 ], [ 150.197975, -35.722087 ], [ 150.197935, -35.722337 ], [ 150.1978818, -35.7228694 ], [ 150.1978344, -35.7233325 ], [ 150.1978023, -35.7244696 ], [ 150.1978485, -35.7247231 ], [ 150.1979562, -35.7253138 ], [ 150.1981688, -35.726405 ], [ 150.19842, -35.7271353 ], [ 150.198854399999988, -35.7281592 ], [ 150.1994839, -35.729433 ], [ 150.1998385, -35.7299642 ], [ 150.2004042, -35.7304665 ], [ 150.2009287, -35.7308397 ], [ 150.2018348, -35.7312843 ], [ 150.202818400000012, -35.7316541 ], [ 150.204015, -35.7319 ], [ 150.2048542, -35.731871 ], [ 150.205063907099316, -35.731800425495422 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307144211" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.231397037181779, -35.77336436530819 ], [ 150.231176, -35.773356 ], [ 150.230988, -35.773464 ], [ 150.230676, -35.77385 ], [ 150.230747, -35.774442 ], [ 150.230877600000014, -35.7746704 ], [ 150.2310345, -35.774889 ], [ 150.231242, -35.77509 ], [ 150.231592, -35.775266 ], [ 150.231754, -35.775251 ], [ 150.231910973066448, -35.775094804027923 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307144312" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.233011889039489, -35.79145554160506 ], [ 150.232987, -35.791444 ], [ 150.232792, -35.79143 ], [ 150.231979, -35.791645 ], [ 150.2319023, -35.791695 ], [ 150.231591, -35.791898 ], [ 150.231329, -35.792155 ], [ 150.2309956, -35.7925917 ], [ 150.2306257, -35.7932672 ], [ 150.230518, -35.793981 ], [ 150.230546, -35.794507 ], [ 150.230896, -35.795002 ], [ 150.2311982, -35.7950315 ], [ 150.231418430326187, -35.795053062250282 ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosedale Beach", "id": "way307144510" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.227551388963604, -35.810595147192942 ], [ 150.227544, -35.810579 ], [ 150.227216, -35.810397 ], [ 150.226969, -35.810398 ], [ 150.226828, -35.810496 ], [ 150.226219, -35.811287 ], [ 150.225901, -35.8121502 ], [ 150.22586050000001, -35.8124 ], [ 150.226001, -35.813722 ], [ 150.226075, -35.814129 ], [ 150.2262556, -35.814526 ], [ 150.2262328, -35.8149168 ], [ 150.226618, -35.8155264 ], [ 150.2267376, -35.8159125 ], [ 150.227225, -35.81631 ], [ 150.227501, -35.816548 ], [ 150.227796, -35.816742 ], [ 150.228112, -35.816851 ], [ 150.228377, -35.816886 ], [ 150.2285742, -35.8168329 ], [ 150.228644726380224, -35.816622895108871 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307144871" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.225108544685099, -35.826313989204415 ], [ 150.2249014, -35.8263923 ], [ 150.224711, -35.826879 ], [ 150.224725, -35.827156 ], [ 150.224776, -35.8274025 ], [ 150.224856, -35.827594 ], [ 150.225126100000011, -35.8281853 ], [ 150.225624, -35.828531 ], [ 150.225949, -35.828627 ], [ 150.226518, -35.82867 ], [ 150.226645, -35.8286269 ], [ 150.226649289881635, -35.828491768728782 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307144872" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.214509274766357, -35.830962217474465 ], [ 150.21426, -35.830997 ], [ 150.214024, -35.831142 ], [ 150.213666, -35.831283 ], [ 150.213127, -35.831296 ], [ 150.212928, -35.831254 ], [ 150.212606, -35.831221 ], [ 150.212065, -35.8312132 ], [ 150.211505, -35.831484 ], [ 150.211156, -35.831721 ], [ 150.21096, -35.831939 ], [ 150.21082, -35.832168 ], [ 150.21081691413022, -35.832527283411395 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307145568" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.205363228982918, -35.83085053455612 ], [ 150.205234, -35.830837 ], [ 150.205022, -35.830815 ], [ 150.204748599999988, -35.8304134 ], [ 150.2045718, -35.8301538 ], [ 150.20403730000001, -35.829738 ], [ 150.2033082, -35.8293544 ], [ 150.2026646, -35.8291318 ], [ 150.20197060000001, -35.828902 ], [ 150.2008826, -35.8287005 ], [ 150.2000936, -35.8286142 ], [ 150.198930600000011, -35.8285762 ], [ 150.1966378, -35.828967 ], [ 150.194984, -35.829616 ], [ 150.194605, -35.83001 ], [ 150.19456, -35.83041 ], [ 150.194719590593394, -35.830563679830675 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307145569" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.190843194268837, -35.83243402757298 ], [ 150.1897971, -35.8322625 ], [ 150.189147100000014, -35.8322847 ], [ 150.1887759, -35.8323277 ], [ 150.1881444, -35.8324405 ], [ 150.1876269, -35.8325792 ], [ 150.1871049, -35.8327903 ], [ 150.186658200000011, -35.8330463 ], [ 150.186257, -35.8334026 ], [ 150.185759, -35.8341544 ], [ 150.1855923, -35.8349305 ], [ 150.185418, -35.8354725 ], [ 150.185471, -35.8364801 ], [ 150.1855627, -35.8370284 ], [ 150.185413899999986, -35.8371393 ], [ 150.1851146, -35.8371612 ], [ 150.185100454295934, -35.837389412342517 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Broulee Beach", "id": "way307146328" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.180108066011059, -35.842314952410355 ], [ 150.1800154, -35.8423595 ], [ 150.179846, -35.842441 ], [ 150.179787, -35.842505 ], [ 150.179291, -35.84267 ], [ 150.1790117, -35.8428596 ], [ 150.178515299999987, -35.8433853 ], [ 150.1779401, -35.8445776 ], [ 150.1776307, -35.8460727 ], [ 150.1775131, -35.8473827 ], [ 150.177584, -35.8488449 ], [ 150.177761, -35.8502288 ], [ 150.177889, -35.851005 ], [ 150.178475, -35.852971 ], [ 150.178932, -35.853973 ], [ 150.1799191, -35.8554366 ], [ 150.1808277, -35.8561582 ], [ 150.181975, -35.8567979 ], [ 150.1831223, -35.8571252 ], [ 150.184227, -35.857284 ], [ 150.184683, -35.857313 ], [ 150.184903144684483, -35.85728861713195 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307147777" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.151983631146607, -35.906516832634829 ], [ 150.1517637, -35.9065456 ], [ 150.151773, -35.906816 ], [ 150.151811, -35.90715 ], [ 150.151844, -35.907315 ], [ 150.151923, -35.907526 ], [ 150.152103, -35.907837 ], [ 150.152249, -35.90799 ], [ 150.152471, -35.908039 ], [ 150.152626, -35.907955 ], [ 150.152816, -35.907908 ], [ 150.153038, -35.907823 ], [ 150.153165, -35.907803 ], [ 150.1531765, -35.9079404 ], [ 150.15339130000001, -35.908156 ], [ 150.1536725, -35.908372 ], [ 150.154120299999988, -35.908516 ], [ 150.1545262, -35.9085383 ], [ 150.154665599999987, -35.9085459 ], [ 150.1547559, -35.9085579 ], [ 150.1548288, -35.9085444 ], [ 150.1548847, -35.9084679 ], [ 150.1551192, -35.9084361 ], [ 150.155214199999989, -35.9085089 ], [ 150.1552965, -35.9084183 ], [ 150.155394, -35.9084067 ], [ 150.1557646, -35.9084342 ], [ 150.155892, -35.9081523 ], [ 150.155891688935014, -35.908151316633251 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bengello Beach", "id": "way307149092" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.17681709357754, -35.859305593569246 ], [ 150.176768, -35.8590894 ], [ 150.1757696, -35.85902 ], [ 150.1748952, -35.8591265 ], [ 150.173977900000011, -35.8594309 ], [ 150.1728862, -35.8599504 ], [ 150.1718105, -35.8605793 ], [ 150.1713493, -35.8609199 ], [ 150.1699573, -35.861872 ], [ 150.1693028, -35.8623633 ], [ 150.1681817, -35.8632089 ], [ 150.1674387, -35.8638371 ], [ 150.1661164, -35.864963 ], [ 150.1646063, -35.8663585 ], [ 150.1631979, -35.8676354 ], [ 150.1625329, -35.8684203 ], [ 150.161945300000014, -35.869088 ], [ 150.160829799999988, -35.8703887 ], [ 150.1601619, -35.8713077 ], [ 150.1596093, -35.8720119 ], [ 150.1591721, -35.872577 ], [ 150.1585445, -35.8734333 ], [ 150.1576088, -35.8747152 ], [ 150.15695740000001, -35.8757157 ], [ 150.15624, -35.8768697 ], [ 150.156061099999988, -35.877194 ], [ 150.155841900000013, -35.877558 ], [ 150.1555311, -35.8780513 ], [ 150.1549477, -35.8791173 ], [ 150.15439, -35.8801454 ], [ 150.1537811, -35.88137 ], [ 150.153019, -35.8828983 ], [ 150.1518183, -35.8857235 ], [ 150.150839, -35.8886901 ], [ 150.150234399999988, -35.8910115 ], [ 150.1499364, -35.8925672 ], [ 150.1497363, -35.8942883 ], [ 150.1495702, -35.8956508 ], [ 150.149477100000013, -35.8972423 ], [ 150.149494800000014, -35.8987694 ], [ 150.1496942, -35.9003243 ], [ 150.1498631, -35.9014029 ], [ 150.1503109, -35.9028304 ], [ 150.1506793, -35.9039226 ], [ 150.1509783, -35.9048587 ], [ 150.151197285290607, -35.904892013961657 ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrays Beach", "id": "way310196798" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.108685605868686, -30.357829820719896 ], [ 153.108528299999989, -30.3579661 ], [ 153.108085, -30.3587982 ], [ 153.1067682, -30.3605347 ], [ 153.1057429, -30.3621795 ], [ 153.1049109, -30.3640086 ], [ 153.1042778, -30.3652245 ], [ 153.104205643351548, -30.365419719438133 ] ] } }, +{ "type": "Feature", "properties": { "name": "Sawtell Main Beach", "id": "way310196987" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.104375460809678, -30.365036937563591 ], [ 153.1042778, -30.3652245 ], [ 153.10356440000001, -30.3671546 ], [ 153.103095, -30.3701191 ], [ 153.1035295, -30.3723568 ], [ 153.104009600000012, -30.3732755 ], [ 153.1043843, -30.3738438 ], [ 153.104093, -30.3746171 ], [ 153.103942100000012, -30.3751207 ], [ 153.1040472, -30.3755363 ], [ 153.1041303, -30.3759668 ], [ 153.104267099999987, -30.3760292 ], [ 153.104320394117195, -30.376074723288017 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way310197504" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.105272500000012, -30.3745779 ], [ 153.106259599999987, -30.3740318 ], [ 153.106401742689258, -30.373879693542804 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cormorant Beach", "id": "way311100768" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.39814165394202, -35.508464098504561 ], [ 150.397977, -35.508611 ], [ 150.397877, -35.508888 ], [ 150.397814, -35.509167 ], [ 150.397754, -35.509917 ], [ 150.397979, -35.510777 ], [ 150.398257, -35.511107 ], [ 150.398477463911291, -35.511111763109191 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cat and Kitten Beach", "id": "way311100770" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.405881617604649, -35.527566942498801 ], [ 150.405817, -35.527778 ], [ 150.406281299999989, -35.5284818 ], [ 150.406558100000012, -35.5291126 ], [ 150.406777850858873, -35.529132250880828 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bull Pup Beach", "id": "way311100771" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.404585219278431, -35.532575668144673 ], [ 150.4045331, -35.5323614 ], [ 150.404058600000013, -35.5319753 ], [ 150.4035208, -35.5317629 ], [ 150.4027537, -35.531647 ], [ 150.4010059, -35.5319109 ], [ 150.400846896348611, -35.532063754663703 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way311100772" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.388830015714035, -35.543104573606165 ], [ 150.388813, -35.543071 ], [ 150.388707, -35.542911 ], [ 150.388546, -35.542883 ], [ 150.388075, -35.5429 ], [ 150.387199, -35.543429 ], [ 150.386863, -35.543761 ], [ 150.386582, -35.544105 ], [ 150.385791, -35.545264 ], [ 150.385885160789371, -35.545463464867417 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kioloa Beach", "id": "way311100773" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.38547253979371, -35.546096695657845 ], [ 150.385261, -35.546034 ], [ 150.385042, -35.546132 ], [ 150.384908, -35.546365 ], [ 150.383645, -35.549138 ], [ 150.383129, -35.550647 ], [ 150.382178, -35.5518439 ], [ 150.382074, -35.5519748 ], [ 150.382190008681761, -35.552162368010961 ] ] } }, +{ "type": "Feature", "properties": { "name": "Depot Beach", "id": "way311100774" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.322585826719802, -35.62283006139819 ], [ 150.322437799999989, -35.622994 ], [ 150.322354100000013, -35.6234035 ], [ 150.3224203, -35.6237605 ], [ 150.3222973, -35.624338 ], [ 150.3223451, -35.625039 ], [ 150.322405, -35.6255499 ], [ 150.3226271, -35.6262326 ], [ 150.323004700000013, -35.627005 ], [ 150.3233864, -35.6274619 ], [ 150.3239911, -35.6277398 ], [ 150.3245856, -35.6279807 ], [ 150.325382100000013, -35.627872 ], [ 150.3258342, -35.6279342 ], [ 150.326035461615731, -35.627843421650297 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way317885375" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.877003517860061, -34.54522008372895 ], [ 150.8769929, -34.5452015 ], [ 150.876933900000012, -34.5450137 ], [ 150.8767623, -34.5449408 ], [ 150.8764377, -34.5449165 ], [ 150.8760139, -34.5449187 ], [ 150.8747318, -34.5451904 ], [ 150.873779899999988, -34.5455214 ], [ 150.8727285, -34.5461577 ], [ 150.871612699999986, -34.5471297 ], [ 150.870819899999987, -34.5480802 ], [ 150.870405, -34.5486962 ], [ 150.870142499999986, -34.5492653 ], [ 150.869905, -34.5498272 ], [ 150.86868, -34.5531792 ], [ 150.868284100000011, -34.5565022 ], [ 150.8690631, -34.5592942 ], [ 150.8694261, -34.5601102 ], [ 150.8696511, -34.5603392 ], [ 150.8697646, -34.560577 ], [ 150.869915099999986, -34.5607945 ], [ 150.87007472921195, -34.560787868345244 ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrays Beach", "id": "way319811934" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.757044263277066, -35.124123105243918 ], [ 150.7569651, -35.1244704 ], [ 150.75715550000001, -35.1247566 ], [ 150.75740780000001, -35.12498 ], [ 150.757691599999987, -35.125188 ], [ 150.7580953, -35.1253974 ], [ 150.7582625, -35.125467 ], [ 150.7584281, -35.1255498 ], [ 150.7586373, -35.125637 ], [ 150.7588489, -35.1256789 ], [ 150.7596236, -35.1258505 ], [ 150.7606604, -35.1259838 ], [ 150.7615787, -35.1259393 ], [ 150.761624923180648, -35.125915344836628 ] ] } }, +{ "type": "Feature", "properties": { "name": "Spoon Bay Beach", "id": "way329647488" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.460351161934881, -33.419015308876212 ], [ 151.46034370000001, -33.4189948 ], [ 151.46026280000001, -33.4189819 ], [ 151.460097499999989, -33.4191098 ], [ 151.4595946, -33.4193577 ], [ 151.459266899999989, -33.4197359 ], [ 151.4591878, -33.4202003 ], [ 151.459036, -33.4204958 ], [ 151.4588579, -33.420584 ], [ 151.4586995, -33.4207639 ], [ 151.458578499999987, -33.4211548 ], [ 151.4584026, -33.4211585 ], [ 151.4579539, -33.4211383 ], [ 151.457638949419533, -33.421232151818316 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wonboyn Beach", "id": "way331942614" }, "geometry": { "type": "LineString", "coordinates": [ [ 149.965970440247645, -37.251859084887251 ], [ 149.965773, -37.25175 ], [ 149.96525840000001, -37.2516806 ], [ 149.96482420000001, -37.2517745 ], [ 149.964346400000011, -37.2521289 ], [ 149.96264690000001, -37.2533415 ], [ 149.9608792, -37.2548572 ], [ 149.957548800000012, -37.2578582 ], [ 149.9557812, -37.2595127 ], [ 149.9541326, -37.2611807 ], [ 149.9528376, -37.26258 ], [ 149.9508817, -37.264989 ], [ 149.9495451, -37.2666795 ], [ 149.9480064, -37.2688653 ], [ 149.9467761, -37.2707607 ], [ 149.94522090000001, -37.2735227 ], [ 149.943205299999988, -37.2783804 ], [ 149.942502499999989, -37.2815646 ], [ 149.9424167, -37.2824182 ], [ 149.942638381001757, -37.282460320653954 ] ] } }, +{ "type": "Feature", "properties": { "name": "Murramerang Beach", "id": "way342079219" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.300557163720867, -35.665416499025106 ], [ 150.300750599999986, -35.665595 ], [ 150.3006184, -35.6656641 ], [ 150.3008399, -35.6659716 ], [ 150.3011922, -35.6665569 ], [ 150.301966, -35.6674657 ], [ 150.3024988, -35.6678266 ], [ 150.3030267, -35.6680234 ], [ 150.303614399999987, -35.6680399 ], [ 150.3036654, -35.6679826 ], [ 150.303745107753343, -35.667861744197488 ] ] } }, +{ "type": "Feature", "properties": { "name": "Emily Miller Beach", "id": "way342079220" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.303200075923684, -35.672074886184667 ], [ 150.3030324, -35.671931 ], [ 150.3025389, -35.6720443 ], [ 150.3020883, -35.6723144 ], [ 150.3016806, -35.6728984 ], [ 150.3015304, -35.6731773 ], [ 150.301435856674459, -35.673376959995963 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way342079221" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.3014231, -35.673635558908458 ], [ 150.3014231, -35.6736741 ], [ 150.3013904, -35.6738541 ], [ 150.301197300000013, -35.6739587 ], [ 150.300908099999987, -35.6742842 ], [ 150.3008539, -35.674743 ], [ 150.3009403, -35.6751209 ], [ 150.301208, -35.6753967 ], [ 150.3016479, -35.6754751 ], [ 150.301856017289367, -35.675549329603776 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way342079222" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.300902492623123, -35.677928999417553 ], [ 150.300725699999987, -35.6777965 ], [ 150.300542799999988, -35.6777585 ], [ 150.3003502, -35.6778487 ], [ 150.3002429, -35.6780666 ], [ 150.3002, -35.6781886 ], [ 150.300049800000011, -35.6782322 ], [ 150.299938519549357, -35.678122776043608 ] ] } }, +{ "type": "Feature", "properties": { "name": "Richmond Beach", "id": "way342079224" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.29366901147867, -35.69342091717337 ], [ 150.2937413, -35.693212 ], [ 150.2934838, -35.6930116 ], [ 150.2929557, -35.6929403 ], [ 150.2921105, -35.6930378 ], [ 150.2914131, -35.6933079 ], [ 150.290919, -35.6935575 ], [ 150.2901573, -35.6939148 ], [ 150.2899969, -35.6942054 ], [ 150.290017799999987, -35.6943592 ], [ 150.2897496, -35.6945944 ], [ 150.2897711, -35.6950911 ], [ 150.289722360203029, -35.695306859236652 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way342079225" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.288744017761474, -35.697139605649284 ], [ 150.288571600000012, -35.6972779 ], [ 150.2884192, -35.6974001 ], [ 150.2881837, -35.6973247 ], [ 150.287937, -35.697194 ], [ 150.287742456209571, -35.697299296742628 ] ] } }, +{ "type": "Feature", "properties": { "name": "Oaky Beach", "id": "way342079226" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.283356929180826, -35.702446020711236 ], [ 150.283146, -35.7023794 ], [ 150.2827227, -35.7023347 ], [ 150.282197, -35.7022737 ], [ 150.2818537, -35.7023347 ], [ 150.2815157, -35.7025438 ], [ 150.2811027, -35.7027791 ], [ 150.280662799999988, -35.7030883 ], [ 150.280357, -35.7036851 ], [ 150.2801317, -35.7039814 ], [ 150.2799654, -35.7043211 ], [ 150.2799923, -35.7047175 ], [ 150.2800727, -35.7050007 ], [ 150.2802873, -35.7052795 ], [ 150.280518, -35.7054145 ], [ 150.2805984, -35.7054799 ], [ 150.2805287, -35.7055408 ], [ 150.280357, -35.7055713 ], [ 150.280354081381091, -35.705606950793801 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way342079228" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.25860390474071, -35.716921487102603 ], [ 150.2586043, -35.7167003 ], [ 150.258459499999987, -35.7164346 ], [ 150.258432699999986, -35.716317 ], [ 150.2582658, -35.7162223 ], [ 150.2580893, -35.7160252 ], [ 150.2577229, -35.7158758 ], [ 150.256772, -35.7156835 ], [ 150.256236199999989, -35.7156292 ], [ 150.2551344, -35.7156854 ], [ 150.254682, -35.715873 ], [ 150.254662544429834, -35.716182865544226 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way342079229" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.262622877160936, -35.717802702273531 ], [ 150.2624721, -35.717641 ], [ 150.2619995, -35.7173285 ], [ 150.2613289, -35.7169714 ], [ 150.2610559, -35.7168919 ], [ 150.2606374, -35.7168788 ], [ 150.2603263, -35.7169311 ], [ 150.2601058, -35.7170103 ], [ 150.2600473, -35.7170313 ], [ 150.259924, -35.7170705 ], [ 150.259854349051039, -35.717139130761971 ] ] } }, +{ "type": "Feature", "properties": { "name": "Mungo Beach", "id": "way345715960" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.408102161040574, -32.489371128493602 ], [ 152.4079858, -32.4894738 ], [ 152.4078077, -32.489631 ], [ 152.4069519, -32.4903656 ], [ 152.406056799999988, -32.4907243 ], [ 152.4055703, -32.4909874 ], [ 152.404288400000013, -32.4914004 ], [ 152.403065199999986, -32.4916761 ], [ 152.4010902, -32.49274 ], [ 152.3992178, -32.4930616 ], [ 152.3969472, -32.4939654 ], [ 152.3923809, -32.4958329 ], [ 152.389802, -32.4966895 ], [ 152.3863289, -32.4980888 ], [ 152.3816613, -32.5000291 ], [ 152.3770149, -32.502317 ], [ 152.3751023, -32.5032474 ], [ 152.3711711, -32.5051829 ], [ 152.3691516, -32.5061764 ], [ 152.3669454, -32.5073821 ], [ 152.364495, -32.5086949 ], [ 152.3614422, -32.5103646 ], [ 152.3555883, -32.5139123 ], [ 152.352380399999987, -32.5157738 ], [ 152.34901, -32.5179195 ], [ 152.344649, -32.5207195 ], [ 152.341300600000011, -32.5230956 ], [ 152.336360899999988, -32.5264705 ], [ 152.3352284, -32.5272882 ], [ 152.333428199999986, -32.5286454 ], [ 152.330945500000013, -32.5306207 ], [ 152.325881900000013, -32.5345567 ], [ 152.3209395, -32.5391329 ], [ 152.3160428, -32.5440154 ], [ 152.311045900000011, -32.5489925 ], [ 152.3067179, -32.5545734 ], [ 152.3049695, -32.5569088 ], [ 152.3031593, -32.559144 ], [ 152.301081, -32.562312 ], [ 152.299731900000012, -32.5644393 ], [ 152.2979214, -32.5689713 ], [ 152.2938385, -32.5780884 ], [ 152.291435799999988, -32.5830443 ], [ 152.290233300000011, -32.5856856 ], [ 152.2893862, -32.5880224 ], [ 152.288037800000012, -32.5902831 ], [ 152.2867535, -32.5923051 ], [ 152.285162, -32.5940664 ], [ 152.284465, -32.5947664 ], [ 152.284274551733574, -32.594892136233575 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way356144269" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.399119757212077, -27.877868084406458 ], [ 153.3984702, -27.878892 ], [ 153.397944700000011, -27.8799915 ], [ 153.3977502, -27.8804672 ], [ 153.397381700000011, -27.8812473 ], [ 153.3970559, -27.8820388 ], [ 153.396760300000011, -27.8827861 ], [ 153.3966148, -27.8832505 ], [ 153.3965102, -27.8836367 ], [ 153.3964368, -27.8849158 ], [ 153.396532400000012, -27.8861468 ], [ 153.3965495, -27.8862946 ], [ 153.396629100000013, -27.8864209 ], [ 153.3966321, -27.8864393 ], [ 153.396654399999989, -27.8865774 ], [ 153.396639, -27.8866492 ], [ 153.3966154, -27.8867591 ], [ 153.3966618, -27.8869947 ], [ 153.3966857, -27.8871158 ], [ 153.3968965, -27.887691 ], [ 153.397458199999988, -27.8885344 ], [ 153.3981226, -27.8895674 ], [ 153.3982576, -27.8897773 ], [ 153.398367472505868, -27.889948222354342 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way362778126" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.229905477605143, -35.817805161436404 ], [ 150.2297326, -35.8179533 ], [ 150.2298599, -35.8181162 ], [ 150.2300424, -35.8182023 ], [ 150.2302651, -35.8182955 ], [ 150.230553500000013, -35.8183537 ], [ 150.230677899999989, -35.818401 ], [ 150.2301387, -35.8185703 ], [ 150.229548, -35.8184776 ], [ 150.229472836915846, -35.818685963486431 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way362778127" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.228151074918856, -35.818599237295686 ], [ 150.2280647, -35.8183726 ], [ 150.227748100000014, -35.8183084 ], [ 150.2272005, -35.8183437 ], [ 150.2268111, -35.8184516 ], [ 150.226917372373492, -35.818652066292309 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way362778128" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.22551132477389, -35.82052048643849 ], [ 150.2252517, -35.8203335 ], [ 150.224936, -35.820719 ], [ 150.224933099999987, -35.8210341 ], [ 150.225065, -35.821206 ], [ 150.225504654979147, -35.821360105868969 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way362778129" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.226269497186337, -35.824671771260391 ], [ 150.2262097, -35.8246241 ], [ 150.2261337, -35.824497 ], [ 150.2258855, -35.8244766 ], [ 150.225553, -35.824545 ], [ 150.225318, -35.824684 ], [ 150.225343839330492, -35.824903989896498 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way362778130" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.224780560591228, -35.808555735258423 ], [ 150.2244906, -35.8084709 ], [ 150.2243502, -35.8087008 ], [ 150.22434, -35.8089067 ], [ 150.2243953, -35.8091334 ], [ 150.224558, -35.809289 ], [ 150.2247849, -35.8094551 ], [ 150.225166, -35.8095604 ], [ 150.225453012784982, -35.809611915115248 ] ] } }, +{ "type": "Feature", "properties": { "name": "Maggies Beach", "id": "way363247956" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.577086692008521, -28.336830901131449 ], [ 153.5768864, -28.3368698 ], [ 153.5765434, -28.3367555 ], [ 153.57646410000001, -28.3367505 ], [ 153.5763476, -28.3367432 ], [ 153.576021, -28.3368233 ], [ 153.5758313, -28.3368698 ], [ 153.575568800000013, -28.3370038 ], [ 153.5754219, -28.3372117 ], [ 153.575322300000011, -28.3379255 ], [ 153.575280099999986, -28.3382282 ], [ 153.5750931, -28.3405672 ], [ 153.5750545, -28.3408152 ], [ 153.574675500000012, -28.3432472 ], [ 153.5745107, -28.3446153 ], [ 153.574329400000011, -28.3461208 ], [ 153.5741052, -28.3492653 ], [ 153.5741617, -28.3498712 ], [ 153.574099600000011, -28.3515925 ], [ 153.574243, -28.3534672 ], [ 153.5746311, -28.3552412 ], [ 153.5747423, -28.3556449 ], [ 153.574934500000012, -28.3561981 ], [ 153.5750667, -28.3565818 ], [ 153.5752397, -28.357011 ], [ 153.5755848, -28.3576522 ], [ 153.5756773, -28.3578376 ], [ 153.5758701, -28.3582163 ], [ 153.5762004, -28.3587528 ], [ 153.576311, -28.3591997 ], [ 153.5762694, -28.359624 ], [ 153.5760636, -28.3597125 ], [ 153.575917299999986, -28.359915 ], [ 153.5759698, -28.3601275 ], [ 153.576195500000011, -28.3602846 ], [ 153.5764264, -28.3604462 ], [ 153.5767204, -28.3604277 ], [ 153.5769066, -28.3602748 ], [ 153.577103541870059, -28.360327746127041 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cookies Beach", "id": "way368287496" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.296243886177308, -35.660052156688778 ], [ 150.2962355, -35.6600523 ], [ 150.2961009, -35.6602206 ], [ 150.2961817, -35.6612276 ], [ 150.296427099999988, -35.6619858 ], [ 150.296705800000012, -35.6630868 ], [ 150.2974773, -35.6643601 ], [ 150.2982625, -35.6649989 ], [ 150.2989283, -35.6653656 ], [ 150.299179900000013, -35.6654135 ], [ 150.2993617, -35.6654041 ], [ 150.2994479, -35.6653996 ], [ 150.2995762, -35.6653602 ], [ 150.299651899999986, -35.665337 ], [ 150.299664, -35.6652513 ], [ 150.299676830539681, -35.665163441352099 ] ] } }, +{ "type": "Feature", "properties": { "name": "Durras Beach", "id": "way369080492" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.320510181992006, -35.636858382202597 ], [ 150.3205624, -35.6366438 ], [ 150.320902499999988, -35.6362665 ], [ 150.3209368, -35.6359314 ], [ 150.320665600000012, -35.6355263 ], [ 150.3197492, -35.6349638 ], [ 150.3190691, -35.634605 ], [ 150.318028199999986, -35.6344312 ], [ 150.317228199999988, -35.6342471 ], [ 150.3165009, -35.6342664 ], [ 150.315485700000011, -35.6344096 ], [ 150.3147224, -35.6345317 ], [ 150.314069499999988, -35.6347008 ], [ 150.3131684, -35.6350359 ], [ 150.3123229, -35.6354119 ], [ 150.3116961, -35.6357472 ], [ 150.3109253, -35.6361201 ], [ 150.309879, -35.6367077 ], [ 150.3092288, -35.6371255 ], [ 150.308865200000014, -35.6373845 ], [ 150.308494599999989, -35.6376267 ], [ 150.3079711, -35.6379632 ], [ 150.30759710000001, -35.6383406 ], [ 150.3071225, -35.6387187 ], [ 150.307024408993811, -35.638981555970332 ] ] } }, +{ "type": "Feature", "properties": { "name": "Durras Beach", "id": "way369080493" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.306680371048714, -35.639553488297238 ], [ 150.3064961, -35.6397823 ], [ 150.3057511, -35.640158 ], [ 150.304570399999989, -35.6407293 ], [ 150.303586, -35.6415056 ], [ 150.302109800000011, -35.642998 ], [ 150.3006537, -35.6446771 ], [ 150.2989229, -35.6473323 ], [ 150.297882499999986, -35.6490962 ], [ 150.2970708, -35.6509583 ], [ 150.2956939, -35.6551732 ], [ 150.2955829, -35.657179 ], [ 150.2958968, -35.6579508 ], [ 150.2960248, -35.6579408 ], [ 150.296117092996496, -35.657933638564771 ] ] } }, +{ "type": "Feature", "properties": { "name": "Maloneys Beach", "id": "way369091913" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.251242185379937, -35.713130248231174 ], [ 150.251192, -35.712915 ], [ 150.251122, -35.712818 ], [ 150.251178, -35.712557 ], [ 150.251025, -35.71208 ], [ 150.250919900000014, -35.7119339 ], [ 150.250391, -35.711397 ], [ 150.2497356, -35.7109582 ], [ 150.249045, -35.710604 ], [ 150.24866, -35.710402 ], [ 150.247508, -35.709976 ], [ 150.246907, -35.709807 ], [ 150.2458665, -35.7095677 ], [ 150.244675699999988, -35.70943 ], [ 150.243777599999987, -35.709431 ], [ 150.2435025, -35.7094313 ], [ 150.24311, -35.709529 ], [ 150.243004, -35.70952 ], [ 150.242889, -35.709475 ], [ 150.242778, -35.709459 ], [ 150.242157, -35.709494 ], [ 150.24209, -35.709514 ], [ 150.241798293006042, -35.709558478096106 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way369096358" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.181365236869681, -35.703485780565941 ], [ 150.181166499999989, -35.7033887 ], [ 150.1804165, -35.7032768 ], [ 150.180283907703881, -35.703454624754322 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way369096361" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.191741649585623, -35.704809626984819 ], [ 150.1916224, -35.7046235 ], [ 150.1914815, -35.7044916 ], [ 150.191282300000012, -35.7044005 ], [ 150.191023699999988, -35.7043125 ], [ 150.190418, -35.7042333 ], [ 150.18966660000001, -35.7042314 ], [ 150.1895102, -35.7042559 ], [ 150.189415, -35.7043623 ], [ 150.18928914353566, -35.704263870504462 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way369096362" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.185592252190048, -35.703915803797273 ], [ 150.1854568, -35.7038819 ], [ 150.1854195, -35.7037777 ], [ 150.1853384, -35.7037174 ], [ 150.185048200000011, -35.7036828 ], [ 150.184797800000013, -35.7036919 ], [ 150.184244, -35.7038129 ], [ 150.1838174, -35.7039313 ], [ 150.1834039, -35.7039784 ], [ 150.183183296727691, -35.703963532909462 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way369096364" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.200065596158595, -35.701727004290177 ], [ 150.200028, -35.701595 ], [ 150.2000998, -35.7015085 ], [ 150.199885, -35.701381 ], [ 150.199745, -35.701326 ], [ 150.1993862, -35.7013036 ], [ 150.199000399999989, -35.7013082 ], [ 150.198275, -35.7014896 ], [ 150.1972422, -35.701945 ], [ 150.196251499999988, -35.7024766 ], [ 150.195388400000013, -35.7030057 ], [ 150.1947256, -35.7034881 ], [ 150.1941081, -35.7039952 ], [ 150.1938797, -35.7041722 ], [ 150.193649, -35.7043757 ], [ 150.1933931, -35.7045992 ], [ 150.1931582, -35.7048603 ], [ 150.1929581, -35.7050333 ], [ 150.192674, -35.7051346 ], [ 150.1924529, -35.7052756 ], [ 150.1923004, -35.7054165 ], [ 150.1923309, -35.7056036 ], [ 150.192314432697287, -35.705637248634822 ] ] } }, +{ "type": "Feature", "properties": { "name": "Middle Beach", "id": "way378122331" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.014863524011616, -36.645149643779767 ], [ 150.0146253, -36.6451355 ], [ 150.0144395, -36.6450202 ], [ 150.013667, -36.6450718 ], [ 150.0126478, -36.6456055 ], [ 150.0118431, -36.6462942 ], [ 150.0104054, -36.648076 ], [ 150.0094935, -36.6496857 ], [ 150.009144600000013, -36.6503357 ], [ 150.0087119, -36.6511401 ], [ 150.008560100000011, -36.6514245 ], [ 150.0083166, -36.6520363 ], [ 150.0073725, -36.6534307 ], [ 150.006543099999988, -36.6544887 ], [ 150.0061789, -36.6551823 ], [ 150.006049499999989, -36.6556334 ], [ 150.0060502, -36.6558558 ], [ 150.0059697, -36.6560129 ], [ 150.005920153564773, -36.656062795353783 ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillard's Beach", "id": "way378122714" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.006050643853058, -36.655629412425647 ], [ 150.006049499999989, -36.6556334 ], [ 150.0060502, -36.6558558 ], [ 150.0059697, -36.6560129 ], [ 150.005728299999987, -36.656256 ], [ 150.0050068, -36.6570887 ], [ 150.003773, -36.6586896 ], [ 150.0023138, -36.6606691 ], [ 150.0019973, -36.6611941 ], [ 150.0014126, -36.6619343 ], [ 150.0008762, -36.6629283 ], [ 150.000307600000014, -36.6641676 ], [ 149.9998161, -36.665092 ], [ 149.9988827, -36.6683536 ], [ 149.9988505, -36.6687925 ], [ 149.9989578, -36.6690937 ], [ 149.999009952177659, -36.669311454801523 ] ] } }, +{ "type": "Feature", "properties": { "name": "Newtons Beach", "id": "way378241758" }, "geometry": { "type": "LineString", "coordinates": [ [ 149.953414729571421, -37.359923896625467 ], [ 149.953318, -37.359958 ], [ 149.953025, -37.360862 ], [ 149.9529513, -37.3612804 ], [ 149.952893, -37.361611 ], [ 149.952543, -37.362308 ], [ 149.952213, -37.363521 ], [ 149.951919, -37.364274 ], [ 149.951616, -37.365242 ], [ 149.950733, -37.367889 ], [ 149.950021, -37.370675 ], [ 149.949909, -37.372096 ], [ 149.949896, -37.372928 ], [ 149.949813, -37.373701 ], [ 149.949912, -37.374389 ], [ 149.94993, -37.374593 ], [ 149.949838, -37.374595 ], [ 149.949831, -37.374669 ], [ 149.949926, -37.37474 ], [ 149.95002, -37.374779 ], [ 149.950106, -37.374875 ], [ 149.950188, -37.374889 ], [ 149.950211, -37.374954 ], [ 149.950286, -37.375026 ], [ 149.950419, -37.375276 ], [ 149.950565, -37.375354 ], [ 149.95071, -37.375392 ], [ 149.950854, -37.375387 ], [ 149.950916, -37.375425 ], [ 149.951125, -37.375655 ], [ 149.951146, -37.3757 ], [ 149.950993, -37.375803 ], [ 149.95101, -37.375875 ], [ 149.951073, -37.3759 ], [ 149.951204, -37.375943 ], [ 149.951277, -37.375983 ], [ 149.95144, -37.376009 ], [ 149.951648110796668, -37.376136467862956 ] ] } }, +{ "type": "Feature", "properties": { "name": "Brou Beach", "id": "way379893070" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.136022480309663, -36.105376649432003 ], [ 150.13580060000001, -36.1053949 ], [ 150.1355001, -36.1054469 ], [ 150.1351958, -36.1055794 ], [ 150.1349598, -36.1058178 ], [ 150.13432, -36.1069811 ], [ 150.1328394, -36.1099975 ], [ 150.1304322, -36.1155948 ], [ 150.1282597, -36.1216226 ], [ 150.1266381, -36.127253 ], [ 150.1258349, -36.131558 ], [ 150.125558, -36.132288 ], [ 150.125221900000014, -36.1366202 ], [ 150.125067800000011, -36.1371252 ], [ 150.1248357, -36.1383531 ], [ 150.124518599999988, -36.1430556 ], [ 150.1245945, -36.1445627 ], [ 150.12480690000001, -36.1453224 ], [ 150.1251575, -36.1490098 ], [ 150.1247621, -36.1524299 ], [ 150.1248479, -36.1557131 ], [ 150.124960499999986, -36.1564581 ], [ 150.125271700000013, -36.1590352 ], [ 150.1261997, -36.1610664 ], [ 150.126744800000012, -36.1615499 ], [ 150.1270887, -36.1621423 ], [ 150.127280484496055, -36.162254913832776 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bingie Beach", "id": "way380212327" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.156399860780738, -36.018541165609115 ], [ 150.15607510000001, -36.0184811 ], [ 150.1556888, -36.0187068 ], [ 150.1536074, -36.0216832 ], [ 150.1517191, -36.0248417 ], [ 150.149101300000012, -36.029076 ], [ 150.1471272, -36.0328069 ], [ 150.1453033, -36.0369366 ], [ 150.14405880000001, -36.0401119 ], [ 150.143026, -36.043085 ], [ 150.1419559, -36.0468524 ], [ 150.1415589, -36.0489169 ], [ 150.1415556, -36.0505394 ], [ 150.1415536, -36.0515105 ], [ 150.141675, -36.0519137 ], [ 150.141813187271936, -36.05208736384597 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way380340808" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.817789493808675, -34.773742355507885 ], [ 150.8175765, -34.7736925 ], [ 150.8157031, -34.7734238 ], [ 150.815640699999989, -34.7734212 ], [ 150.8155741, -34.7734184 ], [ 150.815484542249436, -34.773425349778179 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellambi Beach", "id": "way380544388" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.91948116491514, -34.358149544346581 ], [ 150.919499699999989, -34.3583664 ], [ 150.919542299999989, -34.3585949 ], [ 150.919604, -34.3589762 ], [ 150.9196892, -34.3593031 ], [ 150.9197871, -34.3597987 ], [ 150.9199447, -34.3603874 ], [ 150.9202095, -34.3609383 ], [ 150.9203257, -34.3612591 ], [ 150.920611, -34.3618995 ], [ 150.9207183, -34.3621874 ], [ 150.920828300000011, -34.3624929 ], [ 150.9208873, -34.3627365 ], [ 150.9209248, -34.3629778 ], [ 150.9210482, -34.3632701 ], [ 150.9212092, -34.3635424 ], [ 150.9216269, -34.3640974 ], [ 150.922020800000013, -34.3645704 ], [ 150.922668, -34.3651688 ], [ 150.923289899999986, -34.3655806 ], [ 150.923774900000012, -34.3656789 ], [ 150.923948177429594, -34.365547620701456 ] ] } }, +{ "type": "Feature", "properties": { "name": "Crowdy Beach", "id": "way382435196" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.785990032100244, -31.745068156729435 ], [ 152.7858144, -31.7451856 ], [ 152.785175400000014, -31.7456293 ], [ 152.7846122, -31.7463273 ], [ 152.784014, -31.7469682 ], [ 152.7836814, -31.7475111 ], [ 152.7833408, -31.7481018 ], [ 152.7820989, -31.7492422 ], [ 152.7800336, -31.7515664 ], [ 152.7794838, -31.7525129 ], [ 152.7788615, -31.7531469 ], [ 152.7778664, -31.7540775 ], [ 152.7769437, -31.7550285 ], [ 152.775988899999987, -31.7560708 ], [ 152.7754873, -31.7566615 ], [ 152.7750957, -31.7572955 ], [ 152.7745083, -31.757665 ], [ 152.7738029, -31.7585316 ], [ 152.7727863, -31.7595488 ], [ 152.7720487, -31.7605522 ], [ 152.770452799999987, -31.7618385 ], [ 152.7691734, -31.7632159 ], [ 152.768414299999989, -31.7641326 ], [ 152.767784, -31.7646024 ], [ 152.7672181, -31.7653002 ], [ 152.7653861, -31.7668509 ], [ 152.7627951, -31.7695007 ], [ 152.7574956, -31.7761739 ], [ 152.7534777, -31.7815549 ], [ 152.7490521, -31.7869174 ], [ 152.7431995, -31.795526 ], [ 152.741914900000012, -31.7977876 ], [ 152.7395946, -31.8018724 ], [ 152.7356893, -31.8117378 ], [ 152.734122899999988, -31.8181196 ], [ 152.733393299999989, -31.8236988 ], [ 152.733843900000011, -31.8291865 ], [ 152.7347666, -31.8322127 ], [ 152.7359682, -31.834929 ], [ 152.737599, -31.8374265 ], [ 152.73950880000001, -31.8395411 ], [ 152.741311200000013, -31.8409264 ], [ 152.742663, -31.8417832 ], [ 152.7438727, -31.8422617 ], [ 152.744057047758957, -31.842158361986755 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kylie's Beach", "id": "way382435198" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.798415950963857, -31.732843807585326 ], [ 152.798211, -31.7327936 ], [ 152.797865, -31.7327229 ], [ 152.7976423, -31.7328507 ], [ 152.7974117, -31.7332385 ], [ 152.7967653, -31.7337905 ], [ 152.7964729, -31.7343608 ], [ 152.7961296, -31.7350201 ], [ 152.795974, -31.7351866 ], [ 152.7955502, -31.73536 ], [ 152.794756299999989, -31.7358527 ], [ 152.7939141, -31.7364709 ], [ 152.793452699999989, -31.7369659 ], [ 152.7931496, -31.7375362 ], [ 152.792594400000013, -31.7378807 ], [ 152.7918005, -31.7386494 ], [ 152.7908483, -31.7400363 ], [ 152.7903977, -31.7403283 ], [ 152.789636, -31.7412795 ], [ 152.7894321, -31.7417881 ], [ 152.789011, -31.7420824 ], [ 152.7884424, -31.7423014 ], [ 152.788099, -31.7426253 ], [ 152.7875277, -31.7433278 ], [ 152.7869725, -31.7440121 ], [ 152.786358299999989, -31.7448219 ], [ 152.7858144, -31.7451856 ], [ 152.785638490770594, -31.745307745422675 ] ] } }, +{ "type": "Feature", "properties": { "name": "Middle Beach", "id": "way383244210" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.997525539432701, -30.763882053696371 ], [ 152.9974937, -30.7639042 ], [ 152.9973972, -30.764047 ], [ 152.99738880000001, -30.7651105 ], [ 152.9973837, -30.7657611 ], [ 152.996815, -30.7752377 ], [ 152.9968241, -30.7774052 ], [ 152.996789, -30.7777655 ], [ 152.9967847, -30.7779173 ], [ 152.9968667, -30.7778972 ], [ 152.996905, -30.7779008 ], [ 152.9969816, -30.7779521 ], [ 152.996987398093523, -30.77796811285565 ] ] } }, +{ "type": "Feature", "properties": { "name": "Grassy Beach", "id": "way383244211" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.99687071455358, -30.77940506804579 ], [ 152.9968667, -30.7794061 ], [ 152.9967411, -30.7795689 ], [ 152.9966327, -30.7798005 ], [ 152.996815, -30.7849438 ], [ 152.997480200000012, -30.7901882 ], [ 152.9975947, -30.7906776 ], [ 152.997773599999988, -30.7914348 ], [ 152.9979779, -30.7920821 ], [ 152.9982568, -30.7926125 ], [ 152.9985187, -30.7930038 ], [ 152.9986443, -30.7931392 ], [ 152.9987805, -30.7932032 ], [ 152.9988784, -30.7932781 ], [ 152.99894230000001, -30.7933604 ], [ 152.9990956, -30.7934848 ], [ 152.999208399999986, -30.793536 ], [ 152.999293599999987, -30.7933769 ], [ 152.999312392027633, -30.7933546109597 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383406313" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.013172306100159, -30.62609839494154 ], [ 153.0134629, -30.6262214 ], [ 153.0133664, -30.6268768 ], [ 153.0136775, -30.6298496 ], [ 153.013782099999986, -30.6322314 ], [ 153.014026800000011, -30.6329436 ], [ 153.0142864, -30.6336992 ], [ 153.0142971, -30.6345116 ], [ 153.0152993, -30.6377299 ], [ 153.015547, -30.638421 ], [ 153.0159011, -30.6385964 ], [ 153.016078099999987, -30.6385133 ], [ 153.01631569394209, -30.638661189626063 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wooli Beach", "id": "way383421939" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.286921151612262, -29.830315866647648 ], [ 153.2868126, -29.8301396 ], [ 153.2862711, -29.8300202 ], [ 153.285637799999989, -29.830228 ], [ 153.284618599999988, -29.8308888 ], [ 153.283813900000013, -29.831638 ], [ 153.2822904, -29.8335367 ], [ 153.2802948, -29.8364776 ], [ 153.2786614, -29.8393766 ], [ 153.2760462, -29.8443694 ], [ 153.2716699, -29.8533935 ], [ 153.270123899999987, -29.8572015 ], [ 153.2687771, -29.8614677 ], [ 153.268738357348326, -29.861671014976107 ] ] } }, +{ "type": "Feature", "properties": { "name": "Jones Beach", "id": "way383425054" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.268845797212663, -29.888556358201821 ], [ 153.2687479, -29.8885351 ], [ 153.2686708, -29.8884119 ], [ 153.2686031, -29.8886561 ], [ 153.269300500000014, -29.8897769 ], [ 153.2702875, -29.8909257 ], [ 153.272047, -29.892493 ], [ 153.2727927, -29.8926697 ], [ 153.273533, -29.8926883 ], [ 153.274031900000011, -29.8929953 ], [ 153.274525399999987, -29.8930464 ], [ 153.274659500000013, -29.8931581 ], [ 153.274650794276624, -29.893211079693344 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way383425062" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.268767596616499, -29.888539377084481 ], [ 153.2687479, -29.8885351 ], [ 153.2686708, -29.8884119 ], [ 153.268640673846761, -29.888520567749215 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383426042" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.268839395448708, -29.86127036940649 ], [ 153.2687771, -29.8614677 ], [ 153.267323299999987, -29.869097 ], [ 153.2665082, -29.8756229 ], [ 153.266506043468098, -29.875830149832851 ] ] } }, +{ "type": "Feature", "properties": { "name": "South Terrace Beach", "id": "way383426043" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.266533850247015, -29.87541753753278 ], [ 153.2665082, -29.8756229 ], [ 153.2664385, -29.8823213 ], [ 153.26698, -29.8850655 ], [ 153.2674092, -29.8863538 ], [ 153.2681666, -29.887284 ], [ 153.2682651, -29.8872003 ], [ 153.268340228500705, -29.887171055732367 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelley Beach", "id": "way383957412" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.356732269675376, -29.529577230017807 ], [ 153.356532499999986, -29.5295251 ], [ 153.355177, -29.5310102 ], [ 153.354275800000011, -29.5320324 ], [ 153.353251199999988, -29.5333766 ], [ 153.352353599999986, -29.5345706 ], [ 153.3518296, -29.5354163 ], [ 153.351008900000011, -29.5366718 ], [ 153.35059050000001, -29.5373672 ], [ 153.350354, -29.5378682 ], [ 153.3499253, -29.538856 ], [ 153.3493656, -29.5399893 ], [ 153.348906, -29.5410682 ], [ 153.3482123, -29.5425982 ], [ 153.347822400000013, -29.5435651 ], [ 153.3470268, -29.545333 ], [ 153.346722699999987, -29.5460945 ], [ 153.3463079, -29.547335 ], [ 153.346238199999988, -29.5490361 ], [ 153.3464099, -29.5495891 ], [ 153.346696900000012, -29.5498457 ], [ 153.3467746, -29.5500721 ], [ 153.346980770818078, -29.550062322180324 ] ] } }, +{ "type": "Feature", "properties": { "name": "Plumbago Beach", "id": "way383957413" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.345933202435958, -29.551182342621335 ], [ 153.3458922, -29.5511967 ], [ 153.3457541, -29.5512848 ], [ 153.3451734, -29.5521032 ], [ 153.3428872, -29.556081 ], [ 153.3414612, -29.5581275 ], [ 153.3406663, -29.5594874 ], [ 153.3397865, -29.5612232 ], [ 153.338264, -29.5646041 ], [ 153.338053800000012, -29.5652593 ], [ 153.33781780000001, -29.5661552 ], [ 153.3375925, -29.5671584 ], [ 153.3374915, -29.5678422 ], [ 153.3375388, -29.5682128 ], [ 153.3377051, -29.5685394 ], [ 153.3378563, -29.5686868 ], [ 153.3383981, -29.5690507 ], [ 153.338594316722947, -29.56894946085038 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way383963163" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.360303509272626, -29.527606702531529 ], [ 153.3601233, -29.527707 ], [ 153.3599195, -29.5279918 ], [ 153.359978500000011, -29.5289626 ], [ 153.360222852440813, -29.52901248276525 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Shelley Beach", "id": "way383963164" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.36000514498491, -29.515257288295093 ], [ 153.3598015, -29.5152903 ], [ 153.3585569, -29.5162799 ], [ 153.357650299999989, -29.5187727 ], [ 153.3574626, -29.5216436 ], [ 153.35768250000001, -29.5226565 ], [ 153.358393299999989, -29.5239915 ], [ 153.359064100000012, -29.5241803 ], [ 153.359122899999988, -29.5241969 ], [ 153.359315362407443, -29.52411788317583 ] ] } }, +{ "type": "Feature", "properties": { "name": "Angourie Beach", "id": "way383966415" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.366681270393514, -29.483818843934756 ], [ 153.3665982, -29.4836299 ], [ 153.3659652, -29.4835179 ], [ 153.365278499999988, -29.4837233 ], [ 153.364130499999987, -29.4843584 ], [ 153.363111300000014, -29.4853484 ], [ 153.3623388, -29.4864971 ], [ 153.3622602, -29.4867821 ], [ 153.3622336, -29.4870628 ], [ 153.3621236, -29.487492 ], [ 153.3619529, -29.4878156 ], [ 153.361717700000014, -29.4881029 ], [ 153.361266300000011, -29.4889184 ], [ 153.3609591, -29.4897009 ], [ 153.360638, -29.4902359 ], [ 153.3599567, -29.4919962 ], [ 153.3594847, -29.4936165 ], [ 153.3590662, -29.4952834 ], [ 153.35868, -29.4966608 ], [ 153.358856381006234, -29.49676764966182 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383975077" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.336944554555203, -29.574333118357288 ], [ 153.3368283, -29.5745036 ], [ 153.336377700000014, -29.5752011 ], [ 153.3360719, -29.5761249 ], [ 153.3354953, -29.5778639 ], [ 153.3355248, -29.5781823 ], [ 153.3353617, -29.5784166 ], [ 153.3346611, -29.5794233 ], [ 153.3341002, -29.5806651 ], [ 153.3337062, -29.5816813 ], [ 153.3328611, -29.584052 ], [ 153.3325743, -29.5848909 ], [ 153.3323675, -29.5858154 ], [ 153.332051, -29.5875647 ], [ 153.331725299999988, -29.5894726 ], [ 153.331493099999989, -29.5912779 ], [ 153.3313191, -29.593157 ], [ 153.3312963, -29.5938808 ], [ 153.3313695, -29.5947009 ], [ 153.331544400000013, -29.5964408 ], [ 153.33207010000001, -29.5995567 ], [ 153.332171735644749, -29.6000255324211 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383975083" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.332275448742706, -29.600504341289017 ], [ 153.3324402, -29.601265 ], [ 153.3331001, -29.6029709 ], [ 153.3342695, -29.6049672 ], [ 153.3355248, -29.6065203 ], [ 153.3368337, -29.6079242 ], [ 153.338722, -29.6087917 ], [ 153.341023299999989, -29.6102235 ], [ 153.341248648869339, -29.610024880890272 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cowdroy's Beach", "id": "way384818393" }, "geometry": { "type": "LineString", "coordinates": [ [ 149.998565391901479, -36.669822387800728 ], [ 149.9983469, -36.6697495 ], [ 149.9977568, -36.6703917 ], [ 149.9973813, -36.6710156 ], [ 149.9967859, -36.6718578 ], [ 149.9961045, -36.6730895 ], [ 149.99556, -36.6740059 ], [ 149.9951336, -36.6747749 ], [ 149.994846599999988, -36.6755677 ], [ 149.9945301, -36.6765057 ], [ 149.9943289, -36.677407 ], [ 149.9942753, -36.6778566 ], [ 149.994278, -36.6783557 ], [ 149.994353100000012, -36.6786762 ], [ 149.994468399999988, -36.679143 ], [ 149.9945435, -36.6792709 ], [ 149.9948171, -36.6798087 ], [ 149.994978, -36.6802787 ], [ 149.995129249312413, -36.680443551883371 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way385239826" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.160074021541135, -36.013969587597536 ], [ 150.1599285, -36.0141433 ], [ 150.1595297, -36.0146194 ], [ 150.159154199999989, -36.0155827 ], [ 150.15935457409438, -36.015678053461585 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way385776463" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.224189370411864, -33.976361600331401 ], [ 151.2241287, -33.9763304 ], [ 151.2240466, -33.9764512 ], [ 151.2239754, -33.976513 ], [ 151.223887, -33.9764686 ], [ 151.2239931, -33.9763971 ], [ 151.223967, -33.9763755 ], [ 151.223929199999986, -33.9763644 ], [ 151.223887, -33.9763511 ], [ 151.2237793, -33.9762784 ], [ 151.2236071, -33.9762451 ], [ 151.223572095008677, -33.976215215419657 ] ] } }, +{ "type": "Feature", "properties": { "name": "Barri Beach", "id": "way387687423" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.362804028556013, -29.454027971244876 ], [ 153.3627774, -29.4540683 ], [ 153.3626825, -29.4540537 ], [ 153.362602399999986, -29.4540708 ], [ 153.3622014, -29.4544479 ], [ 153.3619309, -29.4548808 ], [ 153.3617185, -29.4552972 ], [ 153.3586166, -29.4674218 ], [ 153.358572247314271, -29.467680866313337 ] ] } }, +{ "type": "Feature", "properties": { "name": "Green Point Beach", "id": "way387687425" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.358331808097091, -29.469085284118766 ], [ 153.358297, -29.4692886 ], [ 153.358391, -29.4700862 ], [ 153.3588138, -29.4711804 ], [ 153.3591927, -29.4715325 ], [ 153.359336500000012, -29.471589 ], [ 153.3594899, -29.4715869 ], [ 153.3596287, -29.4717755 ], [ 153.359786899999989, -29.4718497 ], [ 153.35988913224827, -29.471995753759629 ] ] } }, +{ "type": "Feature", "properties": { "name": "Red Cliff Beach", "id": "way387687428" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.33873468374037, -29.569048801785964 ], [ 153.338548300000014, -29.569186 ], [ 153.3384031, -29.5693796 ], [ 153.337813399999987, -29.5701658 ], [ 153.337346700000012, -29.5715562 ], [ 153.3374131, -29.5723785 ], [ 153.337633, -29.5725791 ], [ 153.3375954, -29.5731483 ], [ 153.3379656, -29.5734422 ], [ 153.337836716792879, -29.573603632383961 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way388405986" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.21222944245693, -35.754765016495099 ], [ 150.2123549, -35.7550018 ], [ 150.2122708, -35.755316 ], [ 150.2120927, -35.7556762 ], [ 150.2119586, -35.7559594 ], [ 150.2119262, -35.7561728 ], [ 150.2119559, -35.7563576 ], [ 150.2119184, -35.7566747 ], [ 150.211665969894199, -35.756836258023512 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way388405987" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.212857177848633, -35.760259781354627 ], [ 150.212981, -35.760536 ], [ 150.212988, -35.760739 ], [ 150.212794300000013, -35.7609896 ], [ 150.2129318, -35.7613429 ], [ 150.2133834, -35.761797 ], [ 150.213841699999989, -35.762129 ], [ 150.2143539, -35.7622687 ], [ 150.214771899999988, -35.7623418 ], [ 150.2151111, -35.7623629 ], [ 150.21545660000001, -35.7623184 ], [ 150.215433902528105, -35.762098349933339 ] ] } }, +{ "type": "Feature", "properties": { "name": "Denhams Beach", "id": "way388405989" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.213327276209753, -35.751722711610242 ], [ 150.2131061, -35.7517154 ], [ 150.212820599999986, -35.7517938 ], [ 150.2124473, -35.7520249 ], [ 150.2121462, -35.7523991 ], [ 150.211981, -35.752887 ], [ 150.211869, -35.753531 ], [ 150.2119296, -35.7540722 ], [ 150.2120788, -35.7544807 ], [ 150.2123549, -35.7550018 ], [ 150.21229747011995, -35.755216359670811 ] ] } }, +{ "type": "Feature", "properties": { "name": "Warrain Beach", "id": "way392061792" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.782383913710049, -34.93181458746632 ], [ 150.7821768, -34.9317433 ], [ 150.7820075, -34.931893 ], [ 150.7815364, -34.9319909 ], [ 150.7810547, -34.9326479 ], [ 150.7800957, -34.9345311 ], [ 150.7792882, -34.9361174 ], [ 150.7789807, -34.9369062 ], [ 150.7784438, -34.938136 ], [ 150.7778504, -34.9406318 ], [ 150.776671099999987, -34.9455921 ], [ 150.776332599999989, -34.9484387 ], [ 150.776174, -34.9506276 ], [ 150.7763009, -34.9532607 ], [ 150.7762735, -34.9548708 ], [ 150.7763157, -34.9566846 ], [ 150.7765477, -34.9583719 ], [ 150.776927300000011, -34.9602068 ], [ 150.7775179, -34.9617886 ], [ 150.778121, -34.9628768 ], [ 150.7780967, -34.9633965 ], [ 150.7785131, -34.9640416 ], [ 150.778949899999986, -34.9642115 ], [ 150.7794949, -34.9644806 ], [ 150.7799129, -34.9652625 ], [ 150.779692, -34.9658641 ], [ 150.7791392, -34.9671211 ], [ 150.779120799999987, -34.9676729 ], [ 150.779184, -34.9683689 ], [ 150.779162899999989, -34.9689383 ], [ 150.7794582, -34.9714271 ], [ 150.77988, -34.973979 ], [ 150.7800698, -34.9743798 ], [ 150.7801964, -34.9748016 ], [ 150.780259699999988, -34.9755187 ], [ 150.780702600000012, -34.9767208 ], [ 150.78112440000001, -34.9782394 ], [ 150.7821156, -34.9809812 ], [ 150.7832967, -34.9836808 ], [ 150.7848975, -34.9866633 ], [ 150.7865648, -34.989297 ], [ 150.7887394, -34.9920516 ], [ 150.791107399999987, -34.9947337 ], [ 150.7916148, -34.9949753 ], [ 150.7920498, -34.9954586 ], [ 150.7923639, -34.9962801 ], [ 150.792581399999989, -34.9967392 ], [ 150.7935479, -34.9982132 ], [ 150.7952635, -35.0005328 ], [ 150.796979, -35.0027317 ], [ 150.7984046, -35.0043747 ], [ 150.8000477, -35.0058729 ], [ 150.8023915, -35.0078059 ], [ 150.805122, -35.0096665 ], [ 150.807634900000011, -35.0114062 ], [ 150.80965470000001, -35.012465 ], [ 150.8107973, -35.012889 ], [ 150.812229, -35.0131359 ], [ 150.8125166, -35.0131856 ], [ 150.812693091977479, -35.013333293594378 ] ] } }, +{ "type": "Feature", "properties": { "name": "Broken Head Beach", "id": "way395502828" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.614349666469167, -28.696818046992892 ], [ 153.6143137, -28.6970197 ], [ 153.6142025, -28.6976437 ], [ 153.6140078, -28.699256 ], [ 153.6139077, -28.7003467 ], [ 153.6142342, -28.7012506 ], [ 153.6142961, -28.7023295 ], [ 153.614638899999989, -28.7033454 ], [ 153.615115800000012, -28.703918 ], [ 153.615650100000011, -28.7046139 ], [ 153.616120599999988, -28.7051439 ], [ 153.6167949, -28.7053086 ], [ 153.6171666, -28.7049952 ], [ 153.617796199999987, -28.7050276 ], [ 153.6184815, -28.7053052 ], [ 153.618916, -28.7055538 ], [ 153.619120571327329, -28.705552064243282 ] ] } }, +{ "type": "Feature", "properties": { "name": "Providence Beach", "id": "way397397740" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.309571016848253, -32.611593288323085 ], [ 152.30947, -32.611781 ], [ 152.309511, -32.612027 ], [ 152.309574, -32.612058 ], [ 152.310098, -32.612123 ], [ 152.31005, -32.612218 ], [ 152.309947, -32.612387 ], [ 152.3113966, -32.6131879 ], [ 152.3114674, -32.613227 ], [ 152.3127732, -32.6135927 ], [ 152.313727, -32.613448 ], [ 152.314723, -32.612991 ], [ 152.31504631378499, -32.612513643596429 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wallabi Beach", "id": "way398697323" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.572460276597752, -31.996668504682241 ], [ 152.5722939, -31.9968554 ], [ 152.572100799999987, -31.9969965 ], [ 152.5718808, -31.9971375 ], [ 152.571215599999988, -31.9975834 ], [ 152.5700975, -31.9985699 ], [ 152.5693756, -31.9992735 ], [ 152.56871240000001, -31.9999072 ], [ 152.567833400000012, -32.0007292 ], [ 152.5670275, -32.0018736 ], [ 152.5664332, -32.0029037 ], [ 152.565862900000013, -32.0040893 ], [ 152.565573300000011, -32.0049881 ], [ 152.5654623, -32.005474 ], [ 152.5654006, -32.0059061 ], [ 152.565408600000012, -32.0061859 ], [ 152.5654596, -32.0064793 ], [ 152.5655387, -32.0067295 ], [ 152.5656715, -32.0069797 ], [ 152.565822712729783, -32.007127918418298 ] ] } }, +{ "type": "Feature", "properties": { "name": "Saltwater Beach", "id": "way398859521" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.565447388149437, -32.00977193521787 ], [ 152.5652504, -32.00985 ], [ 152.5642741, -32.0103526 ], [ 152.5635928, -32.0107598 ], [ 152.5621256, -32.0119379 ], [ 152.5611949, -32.0126921 ], [ 152.5603741, -32.0134571 ], [ 152.559489, -32.0141713 ], [ 152.558569, -32.014965 ], [ 152.5575337, -32.0159566 ], [ 152.556619, -32.0168299 ], [ 152.5556508, -32.0178214 ], [ 152.5545055, -32.0190813 ], [ 152.5537974, -32.0198864 ], [ 152.553352100000012, -32.0204299 ], [ 152.5525635, -32.0214442 ], [ 152.55218, -32.0219513 ], [ 152.55164, -32.0227722 ], [ 152.551238500000011, -32.0233157 ], [ 152.5508121, -32.0239297 ], [ 152.5503319, -32.0246142 ], [ 152.5495395, -32.0256726 ], [ 152.549391505300605, -32.02589530000138 ] ] } }, +{ "type": "Feature", "properties": { "name": "Diamond Beach", "id": "way400673679" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.549666405840895, -32.025503093258479 ], [ 152.5495395, -32.0256726 ], [ 152.548180699999989, -32.0277173 ], [ 152.5471911, -32.0294941 ], [ 152.5465715, -32.0305606 ], [ 152.5460324, -32.0315088 ], [ 152.54563, -32.0323138 ], [ 152.5452708, -32.0331242 ], [ 152.544927300000012, -32.0338099 ], [ 152.5446135, -32.0346103 ], [ 152.5441065, -32.0358472 ], [ 152.543779300000011, -32.0365907 ], [ 152.543436, -32.0374707 ], [ 152.5429398, -32.0387485 ], [ 152.542685, -32.039592 ], [ 152.5425294, -32.0403401 ], [ 152.542301400000014, -32.0414314 ], [ 152.541998299999989, -32.0428842 ], [ 152.541775699999988, -32.0437959 ], [ 152.541655, -32.0442666 ], [ 152.5415719, -32.0447599 ], [ 152.54146990000001, -32.0454761 ], [ 152.5414297, -32.0461263 ], [ 152.5414324, -32.0468288 ], [ 152.5414994, -32.0473449 ], [ 152.54165230000001, -32.0479473 ], [ 152.5417811, -32.0483907 ], [ 152.5419661, -32.0488044 ], [ 152.542105600000014, -32.0489954 ], [ 152.5422156, -32.0491227 ], [ 152.5423738, -32.0491864 ], [ 152.5425884, -32.0492932 ], [ 152.5426742, -32.0493455 ], [ 152.5427306, -32.0494865 ], [ 152.5426903, -32.0495728 ], [ 152.5427788, -32.0497706 ], [ 152.5427118, -32.0498798 ], [ 152.5425991, -32.0499866 ], [ 152.5425294, -32.050123 ], [ 152.5424865, -32.0503435 ], [ 152.542491899999987, -32.0504845 ], [ 152.542505299999988, -32.0506345 ], [ 152.5425535, -32.0508005 ], [ 152.542687699999988, -32.0509573 ], [ 152.542848600000013, -32.051071 ], [ 152.543053534494902, -32.051124479423706 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way400673680" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.545966418437018, -32.05448784864695 ], [ 152.5459036, -32.0546902 ], [ 152.5458902, -32.0549334 ], [ 152.545825799999989, -32.0550925 ], [ 152.5458446, -32.055404 ], [ 152.5459626, -32.05582 ], [ 152.5460994, -32.0561064 ], [ 152.5463167, -32.0564292 ], [ 152.5464642, -32.0567247 ], [ 152.5465634, -32.0568566 ], [ 152.5472125, -32.0570589 ], [ 152.54737777481094, -32.057191473728189 ] ] } }, +{ "type": "Feature", "properties": { "name": "Whiting Beach", "id": "way413281899" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.695394929589952, -35.177828459469374 ], [ 150.695458, -35.177784 ], [ 150.695441, -35.17777 ], [ 150.695546, -35.1776691 ], [ 150.695722, -35.1775 ], [ 150.695793, -35.177242 ], [ 150.695377, -35.176997 ], [ 150.695157663201257, -35.176984827881682 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kitty's Beach", "id": "way413281903" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.695024748615026, -35.190379349681209 ], [ 150.6952257, -35.1902908 ], [ 150.695731, -35.190068 ], [ 150.6957415, -35.1899492 ], [ 150.69575, -35.189853 ], [ 150.695648454847145, -35.189750196022949 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Wategos Beach", "id": "way435765758" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.636054556278168, -28.634227244133204 ], [ 153.6362528, -28.6341772 ], [ 153.6367086, -28.6342319 ], [ 153.637165900000014, -28.6341801 ], [ 153.637642, -28.6340495 ], [ 153.6378432, -28.6338246 ], [ 153.6379619, -28.6335153 ], [ 153.6380428, -28.6333801 ], [ 153.638095363869695, -28.633360417366774 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way438224550" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.145352724373424, -32.719555973215691 ], [ 152.14558310000001, -32.7195203 ], [ 152.1456493, -32.7195921 ], [ 152.146796599999988, -32.7193043 ], [ 152.1472496, -32.7191174 ], [ 152.14743390000001, -32.7190284 ], [ 152.147628811979757, -32.718934232291573 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way438224551" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.115137967136036, -32.716988052956268 ], [ 152.115141, -32.716989 ], [ 152.115399, -32.716977 ], [ 152.115407, -32.717035 ], [ 152.115893, -32.717307 ], [ 152.116278, -32.717447 ], [ 152.118001, -32.717706 ], [ 152.12744, -32.7197106 ], [ 152.128275699999989, -32.7200293 ], [ 152.1289732, -32.7202087 ], [ 152.1295552, -32.7202468 ], [ 152.129784326934526, -32.720147505638394 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way438224553" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.106303772305296, -32.717337716342819 ], [ 152.106308, -32.717353 ], [ 152.106249100000014, -32.717544 ], [ 152.1061784, -32.7177736 ], [ 152.1066923, -32.7179898 ], [ 152.1077029, -32.7180314 ], [ 152.1099599, -32.7174014 ], [ 152.11088887105501, -32.717234596993492 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way438224574" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.099777812359093, -32.728004684604159 ], [ 152.099906, -32.7281786 ], [ 152.100136, -32.7281217 ], [ 152.1005563, -32.7279282 ], [ 152.100946099999987, -32.7276777 ], [ 152.1011097, -32.7275726 ], [ 152.101339700000011, -32.7274545 ], [ 152.1018359, -32.7271582 ], [ 152.102294699999987, -32.7267368 ], [ 152.102600599999988, -32.7264343 ], [ 152.102920899999987, -32.7260415 ], [ 152.10321, -32.7256869 ], [ 152.103397, -32.7254074 ], [ 152.1036747, -32.7249561 ], [ 152.103793200000013, -32.7246874 ], [ 152.103933899999987, -32.7243682 ], [ 152.103995, -32.72417 ], [ 152.1042478, -32.7234992 ], [ 152.104347, -32.723236 ], [ 152.1044147, -32.7227037 ], [ 152.104328389518258, -32.722508439402311 ] ] } }, +{ "type": "Feature", "properties": { "name": "Burgess Beach", "id": "way439648768" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.560524768488676, -32.208016618253268 ], [ 152.5603428, -32.2082732 ], [ 152.5607257, -32.2086554 ], [ 152.560990800000013, -32.2093947 ], [ 152.5618842, -32.2099263 ], [ 152.562259821660376, -32.210024944114764 ] ] } }, +{ "type": "Feature", "properties": { "name": "Forster Beach", "id": "way450323845" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.011918496757602, -30.65123236276257 ], [ 153.011707199999989, -30.6512965 ], [ 153.011591399999986, -30.6514578 ], [ 153.0114734, -30.6522931 ], [ 153.0109692, -30.6533176 ], [ 153.010516599999988, -30.6543223 ], [ 153.0072715, -30.6594427 ], [ 153.003308800000013, -30.6664228 ], [ 153.0000633, -30.6726103 ], [ 152.9970485, -30.6799923 ], [ 152.994924200000014, -30.6857821 ], [ 152.993754700000011, -30.6893435 ], [ 152.9912227, -30.6987123 ], [ 152.9901391, -30.7042427 ], [ 152.9890341, -30.7110227 ], [ 152.9883259, -30.7180697 ], [ 152.988106, -30.7248257 ], [ 152.988213300000012, -30.7311985 ], [ 152.9886854, -30.7357956 ], [ 152.989203, -30.7378797 ], [ 152.9899943, -30.7400168 ], [ 152.990729, -30.7414502 ], [ 152.991689400000013, -30.7428593 ], [ 152.9926121, -30.7438344 ], [ 152.9934667, -30.7444559 ], [ 152.994023, -30.744715 ], [ 152.9945296, -30.744917 ], [ 152.994937599999986, -30.7450031 ], [ 152.995499599999988, -30.7450769 ], [ 152.9962841, -30.7449985 ], [ 152.996732, -30.7448395 ], [ 152.9968795, -30.7447703 ], [ 152.996908600000012, -30.7446227 ], [ 152.9969288, -30.74444 ], [ 152.996916364567369, -30.744414104060432 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way458673852" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.914191129707291, -31.423921892764849 ], [ 152.914, -31.4238336 ], [ 152.9133986, -31.4245087 ], [ 152.9133324, -31.424785 ], [ 152.9135008, -31.4247758 ], [ 152.913502215485465, -31.424909233095608 ] ] } }, +{ "type": "Feature", "properties": { "name": "South Kingscliff Beach", "id": "way477089973" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.58462409275225, -28.256781459007193 ], [ 153.5846445, -28.2567843 ], [ 153.5848297, -28.2568101 ], [ 153.5851175, -28.2568501 ], [ 153.5856849, -28.2573144 ], [ 153.5858397, -28.258965 ], [ 153.584808, -28.2623696 ], [ 153.5822804, -28.2709841 ], [ 153.5786695, -28.2844474 ], [ 153.5778221, -28.2883968 ], [ 153.577779155876698, -28.28859693805326 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bogangar Beach", "id": "way477198650" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.57229180966138, -28.317602687504397 ], [ 153.572258799999986, -28.3178039 ], [ 153.5721872, -28.3182402 ], [ 153.5716802, -28.3274221 ], [ 153.571837126948282, -28.3290435546574 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cabarita Beach", "id": "way477198651" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.571797363731577, -28.328632699456069 ], [ 153.5720182, -28.3309145 ], [ 153.5724688, -28.3325481 ], [ 153.573257399999989, -28.3333368 ], [ 153.5739897, -28.3336747 ], [ 153.574165979955552, -28.333777547358689 ] ] } }, +{ "type": "Feature", "properties": { "name": "Casuarina Beach", "id": "way477198652" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.577864881156415, -28.28819741376072 ], [ 153.5778221, -28.2883968 ], [ 153.5759356, -28.2971887 ], [ 153.5738208, -28.3075937 ], [ 153.5733701, -28.3110299 ], [ 153.572258799999986, -28.3178039 ], [ 153.572225744000434, -28.318005329226324 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way478569486" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.888104046667451, -34.593469264547132 ], [ 150.8881074, -34.5934729 ], [ 150.8880537, -34.5936827 ], [ 150.888271, -34.593712 ], [ 150.8884574, -34.5936982 ], [ 150.8886331, -34.5936336 ], [ 150.888621699999987, -34.5935717 ], [ 150.888617243641534, -34.593415993505666 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way482348773" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.447557648201183, -33.447955354320179 ], [ 151.4476277, -33.4479953 ], [ 151.4477086, -33.4481087 ], [ 151.4479744, -33.4481039 ], [ 151.4485132, -33.4481158 ], [ 151.449140199999988, -33.4480565 ], [ 151.449608, -33.4479592 ], [ 151.4501685, -33.4476782 ], [ 151.4502345, -33.4475815 ], [ 151.450301777356145, -33.447509412713728 ] ] } }, +{ "type": "Feature", "properties": { "name": "Jenny Dixon Beach", "id": "way484312448" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.563653565301507, -33.269063500381044 ], [ 151.5634455, -33.2693451 ], [ 151.5634206, -33.2700028 ], [ 151.5635426, -33.2710373 ], [ 151.5637691, -33.2717699 ], [ 151.564145, -33.2723464 ], [ 151.5645906, -33.2726461 ], [ 151.564640278273771, -33.272687022495973 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way486691333" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.504060434964742, -33.350512181069625 ], [ 151.50409830000001, -33.3506231 ], [ 151.504216709778973, -33.350795837600117 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way486691336" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.503424130463401, -33.347412489875573 ], [ 151.5033838, -33.3475366 ], [ 151.503077, -33.3484612 ], [ 151.503105236364206, -33.348760608764223 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way494025362" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.304361302617224, -33.746434143290763 ], [ 151.3040671, -33.7465977 ], [ 151.303899, -33.7467086 ], [ 151.3031416, -33.7472302 ], [ 151.302969295251927, -33.747360280608561 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Wall Beach", "id": "way506149749" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.139469477175055, -30.296867276741956 ], [ 153.139598400000011, -30.2973783 ], [ 153.139767, -30.2979197 ], [ 153.1399511, -30.2989143 ], [ 153.1403001, -30.2999754 ], [ 153.140789399999989, -30.3006894 ], [ 153.14103080000001, -30.3012903 ], [ 153.141391700000014, -30.3016825 ], [ 153.141564709980571, -30.301797692681834 ] ] } }, +{ "type": "Feature", "properties": { "name": "Park Beach", "id": "way506150317" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.143546744865318, -30.281207265993419 ], [ 153.1433688, -30.2810995 ], [ 153.143110900000011, -30.281057 ], [ 153.142925, -30.2811683 ], [ 153.1426064, -30.2813452 ], [ 153.1422498, -30.2817481 ], [ 153.1417607, -30.2825033 ], [ 153.1413202, -30.2834691 ], [ 153.140838699999989, -30.2845651 ], [ 153.1405542, -30.2854806 ], [ 153.1403465, -30.2863452 ], [ 153.1399739, -30.2873788 ], [ 153.139750099999986, -30.2889346 ], [ 153.1396669, -30.2894567 ], [ 153.1396097, -30.2898583 ], [ 153.1395038, -30.290533 ], [ 153.1394611, -30.2910252 ], [ 153.1395071, -30.2915648 ], [ 153.139499699999988, -30.29221 ], [ 153.1396988, -30.293147 ], [ 153.1401433, -30.2944004 ], [ 153.140358099999986, -30.294973 ], [ 153.1405916, -30.2954972 ], [ 153.1407048, -30.2958074 ], [ 153.140683200000012, -30.2959274 ], [ 153.1405355, -30.2960375 ], [ 153.1400346, -30.2962222 ], [ 153.1396173, -30.2963597 ], [ 153.139454857115908, -30.296549566127801 ] ] } }, +{ "type": "Feature", "properties": { "name": "Diggers Beach", "id": "way530920376" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.143525234526805, -30.270990725833791 ], [ 153.143408599999987, -30.2710017 ], [ 153.1433275, -30.271055 ], [ 153.1431438, -30.2715243 ], [ 153.1427833, -30.2730346 ], [ 153.142750799999988, -30.274274 ], [ 153.1430205, -30.2753108 ], [ 153.1433403, -30.2758189 ], [ 153.143704500000013, -30.2761576 ], [ 153.1440938, -30.2765182 ], [ 153.144561, -30.2766466 ], [ 153.1448795, -30.276506 ], [ 153.144982889727743, -30.276382494014435 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Diggers Beach", "id": "way530920753" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.145395383141278, -30.269761539334091 ], [ 153.1453407, -30.2697387 ], [ 153.1452148, -30.2695927 ], [ 153.1450877, -30.2695454 ], [ 153.144963499999989, -30.2695621 ], [ 153.144775900000013, -30.2697486 ], [ 153.1441672, -30.2702713 ], [ 153.1438868, -30.2706776 ], [ 153.1438901, -30.2708473 ], [ 153.1440182, -30.270951 ], [ 153.1442166, -30.270987 ], [ 153.144250232178393, -30.271008244150302 ] ] } }, +{ "type": "Feature", "properties": { "name": "Ghosties Beach", "id": "way553034566" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.634936389123538, -33.175802456090821 ], [ 151.6347384, -33.17572 ], [ 151.634397799999988, -33.1757133 ], [ 151.6341859, -33.1756145 ], [ 151.6336441, -33.1754483 ], [ 151.633134500000011, -33.1753563 ], [ 151.6328207, -33.1753428 ], [ 151.6325498, -33.1754304 ], [ 151.6321045, -33.1756369 ], [ 151.631710199999986, -33.1758053 ], [ 151.631155, -33.1761196 ], [ 151.630682900000011, -33.1763486 ], [ 151.630508600000013, -33.176508 ], [ 151.6299936, -33.1768066 ], [ 151.629760299999987, -33.1769278 ], [ 151.629556400000013, -33.1770782 ], [ 151.6294867, -33.1771972 ], [ 151.629631133680448, -33.177355885060969 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way553034568" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.62871663468502, -33.17874423043417 ], [ 151.62850370000001, -33.1787187 ], [ 151.6282324, -33.1790212 ], [ 151.6283527, -33.1791601 ], [ 151.628355864775614, -33.179196520580064 ] ] } }, +{ "type": "Feature", "properties": { "name": "Moruya Heads Beach", "id": "way561980537" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.159141933335178, -35.911438662230744 ], [ 150.1591115, -35.9114767 ], [ 150.158920599999988, -35.9114268 ], [ 150.158137399999987, -35.9129622 ], [ 150.1570678, -35.9169853 ], [ 150.156774, -35.9194172 ], [ 150.156765, -35.919492 ], [ 150.1567742, -35.9216511 ], [ 150.1574488, -35.9252914 ], [ 150.1582939, -35.9274905 ], [ 150.1599167, -35.931611 ], [ 150.1610538, -35.9324289 ], [ 150.161096447570657, -35.932648466570257 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pedro Beach", "id": "way562090488" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.160193626283245, -35.934122807171136 ], [ 150.160001200000011, -35.934233 ], [ 150.1588463, -35.9353665 ], [ 150.157258, -35.9378354 ], [ 150.1562106, -35.9403224 ], [ 150.1555686, -35.9426715 ], [ 150.15513, -35.945369 ], [ 150.1552491, -35.9470884 ], [ 150.15562460000001, -35.9487989 ], [ 150.156237800000014, -35.9502554 ], [ 150.157659, -35.952045 ], [ 150.1589215, -35.9530934 ], [ 150.1596621, -35.9533487 ], [ 150.1597301, -35.9535736 ], [ 150.159905921595964, -35.953708612478181 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way575508644" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.53048778809935, -35.231744545787706 ], [ 150.53041970000001, -35.2319534 ], [ 150.53048960000001, -35.2319976 ], [ 150.5304984, -35.2320891 ], [ 150.530678, -35.232444 ], [ 150.5308109, -35.232442 ], [ 150.5310175, -35.232396 ], [ 150.531027388353806, -35.23240461683443 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Smoky Beach", "id": "way575707432" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.086136953646104, -30.916253255737288 ], [ 153.086138299999988, -30.9162923 ], [ 153.0860673, -30.9163706 ], [ 153.0860065, -30.916417 ], [ 153.085926199999989, -30.9165157 ], [ 153.0858886, -30.9166583 ], [ 153.0858403, -30.9169345 ], [ 153.0856794, -30.9172934 ], [ 153.085674, -30.9175696 ], [ 153.0856848, -30.9179562 ], [ 153.0857813, -30.9182185 ], [ 153.0859798, -30.9185728 ], [ 153.0862319, -30.9187753 ], [ 153.086429156024394, -30.918845134293399 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way583969854" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.925677006226834, -31.439331946642262 ], [ 152.925693599999988, -31.439345 ], [ 152.9257676, -31.4393854 ], [ 152.9257949, -31.4394476 ], [ 152.9257854, -31.4395122 ], [ 152.9257417, -31.4395552 ], [ 152.925685, -31.4395899 ], [ 152.925603599999988, -31.4396534 ], [ 152.925547, -31.4397168 ], [ 152.925511699999987, -31.4398189 ], [ 152.9254922, -31.4398889 ], [ 152.9254881, -31.4399619 ], [ 152.92548690000001, -31.440058 ], [ 152.9255085, -31.4401264 ], [ 152.9255364, -31.4401697 ], [ 152.9255736, -31.4401999 ], [ 152.9256249, -31.4402301 ], [ 152.9256709, -31.4402105 ], [ 152.9256939, -31.4401848 ], [ 152.9257541, -31.4401486 ], [ 152.9258213, -31.4401425 ], [ 152.9258726, -31.4401667 ], [ 152.925962858857503, -31.440175755905326 ] ] } }, +{ "type": "Feature", "properties": { "name": "Currumbin Alley beach", "id": "way584278325" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.485598089746134, -28.125818278605635 ], [ 153.4857929, -28.1257589 ], [ 153.485897200000011, -28.125553 ], [ 153.485995826279208, -28.125374999291303 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way584741088" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.557487682326212, -28.53827294461275 ], [ 153.557283399999989, -28.5382666 ], [ 153.5571913, -28.5385201 ], [ 153.557213600000011, -28.5393753 ], [ 153.557216399999987, -28.5396302 ], [ 153.557152300000013, -28.5415857 ], [ 153.5573475, -28.5450042 ], [ 153.5575149, -28.5466362 ], [ 153.5579172, -28.5496201 ], [ 153.558483200000012, -28.5535265 ], [ 153.5589822, -28.5565624 ], [ 153.5595515, -28.5598989 ], [ 153.560331, -28.5631508 ], [ 153.561136800000014, -28.5663511 ], [ 153.5615862, -28.5681225 ], [ 153.5628549, -28.5729973 ], [ 153.5636475, -28.575597 ], [ 153.564298400000013, -28.5778855 ], [ 153.5645863, -28.5787954 ], [ 153.5650889, -28.5802595 ], [ 153.5655591, -28.5817515 ], [ 153.5658306, -28.5826956 ], [ 153.566422499999987, -28.5841072 ], [ 153.567196700000011, -28.5863799 ], [ 153.5679782, -28.5885165 ], [ 153.5686091, -28.590135 ], [ 153.5686868, -28.59035 ], [ 153.5688094, -28.5906903 ], [ 153.568899919643229, -28.590873510261048 ] ] } }, +{ "type": "Feature", "properties": { "name": "Honeymoon Beach", "id": "way585353742" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.455065018760905, -27.023080370752783 ], [ 153.455013, -27.0231027 ], [ 153.454866900000013, -27.0231178 ], [ 153.4548192, -27.023192 ], [ 153.454804, -27.0232424 ], [ 153.4547991, -27.02335 ], [ 153.4548327, -27.0234797 ], [ 153.4548882, -27.0235786 ], [ 153.4549566, -27.0236159 ], [ 153.455027300000012, -27.0236829 ], [ 153.455050450288127, -27.023698261908134 ] ] } }, +{ "type": "Feature", "properties": { "name": "Flat Rock Beach", "id": "way591455333" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.490662914562677, -28.132493612592132 ], [ 153.490684, -28.1325364 ], [ 153.4906263, -28.1325476 ], [ 153.4906305, -28.1325684 ], [ 153.4906547, -28.1326056 ], [ 153.4906475, -28.1326469 ], [ 153.4905468, -28.1326609 ], [ 153.492075699999987, -28.1350095 ], [ 153.492892399999988, -28.1365027 ], [ 153.4933555, -28.1369471 ], [ 153.4935999, -28.1370439 ], [ 153.4937789, -28.1369865 ], [ 153.4938273, -28.1370177 ], [ 153.4937366, -28.137174 ], [ 153.4937232, -28.1373553 ], [ 153.493840291498913, -28.137522014110512 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way594795760" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.471171240512803, -28.115454152747375 ], [ 153.4709887, -28.1155457 ], [ 153.472182800000013, -28.1175554 ], [ 153.473770699999989, -28.119675 ], [ 153.475431500000013, -28.1218369 ], [ 153.4770854, -28.1236167 ], [ 153.477242835402791, -28.123745579533786 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way594795762" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.4769468822617, -28.123467637861637 ], [ 153.4770854, -28.1236167 ], [ 153.4791672, -28.1253209 ], [ 153.47953, -28.1256178 ], [ 153.4806686, -28.1262253 ], [ 153.4810958, -28.1264532 ], [ 153.4815711, -28.1267068 ], [ 153.4823292, -28.127035 ], [ 153.482728400000013, -28.1271621 ], [ 153.4830873, -28.1272763 ], [ 153.4831692, -28.1270945 ], [ 153.483171714159397, -28.127091069200315 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beach", "id": "way614055418" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.869706600079297, -34.565446591171224 ], [ 150.8690832, -34.5658243 ], [ 150.868944199999987, -34.5660132 ], [ 150.8688072, -34.5663402 ], [ 150.86846220000001, -34.5679292 ], [ 150.8684374, -34.5693765 ], [ 150.8686022, -34.5721253 ], [ 150.8687233, -34.5727123 ], [ 150.8693633, -34.5736143 ], [ 150.86958658866314, -34.573730446119136 ] ] } }, +{ "type": "Feature", "properties": { "name": "Hargraves Beach", "id": "way633742699" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.56270226480035, -33.267005301183822 ], [ 151.5627375, -33.267113 ], [ 151.56299, -33.2675385 ], [ 151.563303600000012, -33.2678653 ], [ 151.5634729, -33.2678361 ], [ 151.563628052150165, -33.267778277536124 ] ] } }, +{ "type": "Feature", "properties": { "name": "Comboyuro Point", "id": "way658947191" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.362591336408059, -27.064320294474218 ], [ 153.3625069, -27.0641252 ], [ 153.3620578, -27.0632858 ], [ 153.361662599999988, -27.0626895 ], [ 153.3613354, -27.0621688 ], [ 153.3612496, -27.0615956 ], [ 153.3613461, -27.0608886 ], [ 153.3616412, -27.0601433 ], [ 153.3624405, -27.0593312 ], [ 153.365294299999988, -27.0576066 ], [ 153.366496, -27.0569187 ], [ 153.3674026, -27.0560803 ], [ 153.36819650000001, -27.0551797 ], [ 153.3684969, -27.0546184 ], [ 153.3685183, -27.0539328 ], [ 153.3690226, -27.0527146 ], [ 153.369168545247334, -27.052575653669763 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606753" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.132131483222963, -36.202543971559237 ], [ 150.132073, -36.202557 ], [ 150.131845, -36.202786 ], [ 150.1317, -36.203021 ], [ 150.131705, -36.20409 ], [ 150.131696, -36.204492 ], [ 150.131962, -36.206211 ], [ 150.131984, -36.206356 ], [ 150.132312, -36.207639 ], [ 150.13234, -36.208185 ], [ 150.132378, -36.208395 ], [ 150.132645, -36.208937 ], [ 150.132799, -36.209382 ], [ 150.132994, -36.209642 ], [ 150.133375865189265, -36.209627922020672 ] ] } }, +{ "type": "Feature", "properties": { "name": "Haywards Beach", "id": "way664606754" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.079719330099266, -36.378206829279286 ], [ 150.079623199999986, -36.3782448 ], [ 150.0794354, -36.3782642 ], [ 150.079129599999987, -36.3782858 ], [ 150.0787595, -36.3783463 ], [ 150.078319599999986, -36.3785018 ], [ 150.0779632, -36.3786582 ], [ 150.07764370000001, -36.3788775 ], [ 150.077193, -36.379321 ], [ 150.0768846, -36.3796268 ], [ 150.0763321, -36.3802682 ], [ 150.0757313, -36.3811298 ], [ 150.0751707, -36.3819785 ], [ 150.074336499999987, -36.3831186 ], [ 150.0737196, -36.3840018 ], [ 150.0732744, -36.3847748 ], [ 150.0728399, -36.3853773 ], [ 150.072332, -36.386292 ], [ 150.072054, -36.3866901 ], [ 150.071791100000013, -36.3871133 ], [ 150.070954300000011, -36.3884499 ], [ 150.070419, -36.389432 ], [ 150.069709, -36.391021 ], [ 150.0695246, -36.3914274 ], [ 150.068781699999988, -36.3932324 ], [ 150.0683981, -36.3940356 ], [ 150.0679448, -36.395249 ], [ 150.067741, -36.395847 ], [ 150.0674057, -36.3965854 ], [ 150.0672582, -36.3970776 ], [ 150.0670677, -36.3977858 ], [ 150.066762, -36.3986925 ], [ 150.0664347, -36.3998108 ], [ 150.0660646, -36.4011666 ], [ 150.0658017, -36.4024252 ], [ 150.0656703, -36.403088 ], [ 150.065498600000012, -36.4040983 ], [ 150.06539140000001, -36.4047265 ], [ 150.0652412, -36.4057605 ], [ 150.0651982, -36.4061988 ], [ 150.0651741, -36.4065852 ], [ 150.06515, -36.4069629 ], [ 150.0651526, -36.4074918 ], [ 150.065190199999989, -36.4077055 ], [ 150.065364499999987, -36.4080401 ], [ 150.065453, -36.4083143 ], [ 150.065437, -36.4085517 ], [ 150.065335, -36.4090784 ], [ 150.0651741, -36.409767 ], [ 150.065155299999986, -36.4106046 ], [ 150.0652063, -36.411345 ], [ 150.0652197, -36.412094 ], [ 150.0652331, -36.4124394 ], [ 150.065359199999989, -36.4127912 ], [ 150.0655228, -36.4129639 ], [ 150.0656784, -36.4130287 ], [ 150.065909, -36.4130956 ], [ 150.06597665810375, -36.413125969928721 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606755" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.080595194720502, -36.375485856598132 ], [ 150.080478, -36.375673 ], [ 150.080269, -36.375848 ], [ 150.0802401, -36.3759794 ], [ 150.0802615, -36.3760723 ], [ 150.080477, -36.376264 ], [ 150.080517827958289, -36.376330045226645 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pebbly Beach", "id": "way664606756" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.08236742387345, -36.373460803502631 ], [ 150.082342899999986, -36.3733706 ], [ 150.082377799999989, -36.3732886 ], [ 150.0823724, -36.3731763 ], [ 150.0822356, -36.3731633 ], [ 150.0820613, -36.3731871 ], [ 150.0818816, -36.3732411 ], [ 150.081707200000011, -36.3733469 ], [ 150.0814709, -36.3734802 ], [ 150.081152, -36.3738522 ], [ 150.0808731, -36.3744202 ], [ 150.0807041, -36.3747506 ], [ 150.080749700000013, -36.3751199 ], [ 150.080669, -36.375368 ], [ 150.08056439113949, -36.375535045562586 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606757" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.082503522272845, -36.372300103210144 ], [ 150.0824475, -36.3723102 ], [ 150.0822705, -36.3723966 ], [ 150.0822785, -36.372496 ], [ 150.0823858, -36.3726277 ], [ 150.082469, -36.3727422 ], [ 150.0826621, -36.3728091 ], [ 150.0828606, -36.3727659 ], [ 150.082973515747739, -36.372715171155839 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606758" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.11630997747065, -36.327026293789913 ], [ 150.115788, -36.327736 ], [ 150.1157363, -36.3279767 ], [ 150.11554, -36.3283929 ], [ 150.115673687636644, -36.328414942045754 ] ] } }, +{ "type": "Feature", "properties": { "name": "1080 Beach", "id": "way664606759" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.125813463461157, -36.3205129399729 ], [ 150.125803, -36.320452 ], [ 150.125659, -36.32039 ], [ 150.125451, -36.320363 ], [ 150.124749, -36.320388 ], [ 150.123585, -36.320935 ], [ 150.122975, -36.32132 ], [ 150.122736, -36.321536 ], [ 150.122726724690324, -36.321566777163895 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606760" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.129775973281482, -36.316844732596998 ], [ 150.129477, -36.316847 ], [ 150.129141, -36.316989 ], [ 150.129034793579308, -36.317091019070766 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pooles Beach", "id": "way664606761" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.132299270042694, -36.313993868885724 ], [ 150.131798, -36.314031 ], [ 150.131587, -36.314298 ], [ 150.131544, -36.314402 ], [ 150.131555, -36.314484 ], [ 150.131634127401185, -36.314587331076844 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606762" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.137468645304153, -36.30504872938949 ], [ 150.137488, -36.305222 ], [ 150.137452, -36.305295 ], [ 150.137342, -36.305346 ], [ 150.137103, -36.305313 ], [ 150.136621, -36.30568 ], [ 150.136371, -36.306078 ], [ 150.136381, -36.306226 ], [ 150.136386, -36.306601 ], [ 150.136484, -36.306818 ], [ 150.136509, -36.306958 ], [ 150.136482, -36.306998 ], [ 150.136179, -36.307207 ], [ 150.136157885027643, -36.307492755959281 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606763" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.134148298575866, -36.300112704123755 ], [ 150.1341444, -36.3001614 ], [ 150.134222200000011, -36.30033 ], [ 150.1341069, -36.3004921 ], [ 150.133942, -36.300789 ], [ 150.133811, -36.30123 ], [ 150.13398620000001, -36.3018194 ], [ 150.1342007, -36.3022971 ], [ 150.134431400000011, -36.3026689 ], [ 150.134587, -36.3027942 ], [ 150.1347479, -36.302978 ], [ 150.135169, -36.3031098 ], [ 150.135735, -36.3031617 ], [ 150.135963, -36.3032158 ], [ 150.1360622, -36.3032871 ], [ 150.136113200000011, -36.3034535 ], [ 150.1361373, -36.3036113 ], [ 150.136209, -36.303731 ], [ 150.136347, -36.303956 ], [ 150.136414, -36.304 ], [ 150.1368936, -36.3040923 ], [ 150.137234, -36.304058 ], [ 150.137632732484917, -36.303812410670893 ] ] } }, +{ "type": "Feature", "properties": { "name": "Billys Beach", "id": "way664606764" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.132931625266906, -36.292641644883986 ], [ 150.1328757, -36.2926536 ], [ 150.132622, -36.292715 ], [ 150.132351, -36.292841 ], [ 150.132156900000012, -36.292993 ], [ 150.1318565, -36.2933259 ], [ 150.1316929, -36.2938447 ], [ 150.1318297, -36.294195 ], [ 150.1320335, -36.2942858 ], [ 150.132126906569511, -36.294311521626277 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606765" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.147689031980349, -36.266453609465458 ], [ 150.1476654, -36.2664776 ], [ 150.1475608, -36.2665143 ], [ 150.147483, -36.2664754 ], [ 150.1474079, -36.2665078 ], [ 150.1473463, -36.2666138 ], [ 150.1473677, -36.2667349 ], [ 150.1471746, -36.2668993 ], [ 150.1468232, -36.2671004 ], [ 150.1465416, -36.2673145 ], [ 150.1461688, -36.2674723 ], [ 150.1458067, -36.2676756 ], [ 150.145570600000013, -36.2679092 ], [ 150.145152200000012, -36.2683547 ], [ 150.1446506, -36.2688499 ], [ 150.1443046, -36.2691505 ], [ 150.1440203, -36.2694986 ], [ 150.143795, -36.2698663 ], [ 150.1437306, -36.2701496 ], [ 150.1436368, -36.2702923 ], [ 150.143478499999986, -36.2703853 ], [ 150.143272, -36.2704696 ], [ 150.143103, -36.2706837 ], [ 150.14299840000001, -36.2709583 ], [ 150.1428053, -36.2712027 ], [ 150.14239760000001, -36.2715984 ], [ 150.1419067, -36.2720093 ], [ 150.141244199999988, -36.2725456 ], [ 150.1407534, -36.2728959 ], [ 150.140420799999987, -36.273283 ], [ 150.1398361, -36.273869 ], [ 150.1393694, -36.2743793 ], [ 150.1390663, -36.2747274 ], [ 150.138427900000011, -36.2754259 ], [ 150.1378593, -36.2759816 ], [ 150.1372719, -36.2767341 ], [ 150.136767600000013, -36.2773806 ], [ 150.1362205, -36.2780336 ], [ 150.135633, -36.2787991 ], [ 150.135472099999987, -36.2793504 ], [ 150.1352951, -36.2799126 ], [ 150.135228, -36.2805872 ], [ 150.1351395, -36.2807407 ], [ 150.1347318, -36.2810024 ], [ 150.134332199999989, -36.2813656 ], [ 150.1339701, -36.2818716 ], [ 150.1337287, -36.2821548 ], [ 150.13327, -36.2828705 ], [ 150.1328355, -36.283491 ], [ 150.1325271, -36.2840683 ], [ 150.1322561, -36.2846477 ], [ 150.1313361, -36.2862542 ], [ 150.130995500000012, -36.2869287 ], [ 150.130861399999986, -36.2873049 ], [ 150.1308319, -36.2874498 ], [ 150.1307675, -36.2877784 ], [ 150.1305959, -36.2882886 ], [ 150.1303799, -36.2885297 ], [ 150.130126499999989, -36.2886475 ], [ 150.130183095108265, -36.288909760991913 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606766" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.146214844603691, -36.261661772966455 ], [ 150.146217, -36.2617586 ], [ 150.1463377, -36.2618992 ], [ 150.146402099999989, -36.2620636 ], [ 150.146522800000014, -36.2621695 ], [ 150.146768, -36.262209 ], [ 150.146984131487613, -36.262257996841115 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606767" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.145663081350904, -36.254827726818917 ], [ 150.1456135, -36.2548441 ], [ 150.1455331, -36.2548592 ], [ 150.1454151, -36.2549241 ], [ 150.1451777, -36.2550442 ], [ 150.1451133, -36.2551328 ], [ 150.145167, -36.2551945 ], [ 150.145193799999987, -36.2552464 ], [ 150.145220599999988, -36.2552821 ], [ 150.1452327, -36.2553199 ], [ 150.1452327, -36.2553545 ], [ 150.1451965, -36.2553545 ], [ 150.1451348, -36.2553297 ], [ 150.1450878, -36.2553351 ], [ 150.144987098307098, -36.255425283407291 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606768" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.145132725562632, -36.255155119501197 ], [ 150.145167, -36.2551945 ], [ 150.145193799999987, -36.2552464 ], [ 150.145220599999988, -36.2552821 ], [ 150.1452327, -36.2553199 ], [ 150.1452327, -36.2553545 ], [ 150.1451965, -36.2553545 ], [ 150.1451348, -36.2553297 ], [ 150.1450878, -36.2553351 ], [ 150.144926, -36.25548 ], [ 150.1447928, -36.2555795 ], [ 150.144653299999987, -36.2557525 ], [ 150.1445594, -36.2559818 ], [ 150.1445889, -36.2562716 ], [ 150.1446359, -36.256516 ], [ 150.1446721, -36.2567161 ], [ 150.1448102, -36.2568242 ], [ 150.144994, -36.2569345 ], [ 150.145073537765171, -36.256984559361804 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606769" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.144972287912196, -36.258161518124801 ], [ 150.144922900000012, -36.2581652 ], [ 150.1447794, -36.2582474 ], [ 150.1446895, -36.258335 ], [ 150.1446104, -36.2584388 ], [ 150.1445889, -36.2586637 ], [ 150.1446158, -36.2592455 ], [ 150.1446694, -36.2596175 ], [ 150.1447284, -36.2599614 ], [ 150.1448598, -36.2602339 ], [ 150.1450369, -36.2604588 ], [ 150.1451978, -36.2605972 ], [ 150.1454338, -36.2606816 ], [ 150.145788110379243, -36.260725539566742 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606770" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.146590620757109, -36.23848902876351 ], [ 150.14649, -36.238588 ], [ 150.146494, -36.238645 ], [ 150.146546, -36.238727 ], [ 150.146541, -36.23875 ], [ 150.146484, -36.238782 ], [ 150.146378, -36.238846 ], [ 150.145915, -36.239058 ], [ 150.145747, -36.239216 ], [ 150.1453185, -36.2397454 ], [ 150.1451978, -36.2398969 ], [ 150.145053, -36.240176 ], [ 150.1447257, -36.2408185 ], [ 150.1445326, -36.2413896 ], [ 150.144430699999987, -36.2420191 ], [ 150.1443411, -36.2423504 ], [ 150.1442832, -36.2425642 ], [ 150.1442295, -36.2429298 ], [ 150.1442993, -36.2430618 ], [ 150.1442912, -36.2433668 ], [ 150.1442577, -36.2435312 ], [ 150.1442362, -36.2435853 ], [ 150.144263099999989, -36.2436134 ], [ 150.1443127, -36.2436156 ], [ 150.144377100000014, -36.2436437 ], [ 150.1445943, -36.2438449 ], [ 150.144603849751888, -36.243856957439981 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606771" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.146861829512261, -36.236339628151285 ], [ 150.1468822, -36.2363857 ], [ 150.1467749, -36.2364398 ], [ 150.1466542, -36.2364549 ], [ 150.146538, -36.236548 ], [ 150.146465, -36.236624 ], [ 150.1463431, -36.236734 ], [ 150.1463082, -36.2368487 ], [ 150.146319, -36.2369893 ], [ 150.146378, -36.2370477 ], [ 150.146530899999988, -36.2370434 ], [ 150.14663018909377, -36.237119513506769 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606772" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.145269046952677, -36.233255444399127 ], [ 150.145517, -36.2333417 ], [ 150.145774499999987, -36.233584 ], [ 150.1458362, -36.2337766 ], [ 150.1458228, -36.2340167 ], [ 150.1456296, -36.2344451 ], [ 150.145570600000013, -36.2346939 ], [ 150.145592099999988, -36.2349578 ], [ 150.145672600000012, -36.2352218 ], [ 150.1457933, -36.2354381 ], [ 150.1459998, -36.2356848 ], [ 150.146233099999989, -36.2358881 ], [ 150.146504, -36.2360374 ], [ 150.146745399999986, -36.2360763 ], [ 150.1468822, -36.2363857 ], [ 150.1467749, -36.2364398 ], [ 150.14668689926043, -36.236450809206026 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cemetery Beach", "id": "way664606773" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.142589508514988, -36.22813123329059 ], [ 150.142514, -36.228149 ], [ 150.142633, -36.228298 ], [ 150.142639, -36.228323 ], [ 150.142623, -36.228371 ], [ 150.142574, -36.228403 ], [ 150.142453, -36.228543 ], [ 150.142459300000013, -36.2288198 ], [ 150.1426175, -36.2290643 ], [ 150.1428536, -36.2293283 ], [ 150.14295820000001, -36.2294213 ], [ 150.143207600000011, -36.2296139 ], [ 150.143296099999986, -36.2298346 ], [ 150.1432773, -36.2300704 ], [ 150.143465, -36.23045 ], [ 150.14347, -36.230506 ], [ 150.143569, -36.230809 ], [ 150.143747, -36.2312 ], [ 150.14379, -36.231364 ], [ 150.1437306, -36.2316736 ], [ 150.1437575, -36.2320111 ], [ 150.143843299999986, -36.2322729 ], [ 150.14397, -36.232538 ], [ 150.144114, -36.232665 ], [ 150.1445487, -36.2329371 ], [ 150.1449323, -36.2331383 ], [ 150.145517, -36.2333417 ], [ 150.145679107689119, -36.233494238613886 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664713177" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.134387220308156, -36.08747946728716 ], [ 150.134356, -36.087485 ], [ 150.134281, -36.087431 ], [ 150.133975, -36.087504 ], [ 150.133873, -36.087583 ], [ 150.133942, -36.089628 ], [ 150.133935, -36.089941 ], [ 150.134302, -36.090972 ], [ 150.1354063, -36.0928291 ], [ 150.1369008, -36.0935775 ], [ 150.137227, -36.093211 ], [ 150.13729885902319, -36.093206169141297 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664713178" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.139240718944592, -36.096129552262177 ], [ 150.138794, -36.096111 ], [ 150.138692, -36.09613 ], [ 150.138444, -36.096268 ], [ 150.138244, -36.096338 ], [ 150.13805, -36.09644 ], [ 150.137171, -36.098299 ], [ 150.136959, -36.099437 ], [ 150.136857, -36.100015 ], [ 150.13673, -36.100451 ], [ 150.1364944, -36.1013853 ], [ 150.136609, -36.101702 ], [ 150.1369125, -36.1021251 ], [ 150.137058151698255, -36.10222894497727 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664797652" }, "geometry": { "type": "LineString", "coordinates": [ [ 150.134229609080876, -36.084234910125652 ], [ 150.134123, -36.08431 ], [ 150.133769, -36.084396 ], [ 150.133711, -36.084478 ], [ 150.133682, -36.08457 ], [ 150.133697, -36.084736 ], [ 150.13375, -36.085018 ], [ 150.133886, -36.085222 ], [ 150.133998, -36.085438 ], [ 150.134081, -36.085472 ], [ 150.134183, -36.085462 ], [ 150.134263, -36.085413 ], [ 150.134383, -36.085512 ], [ 150.134393571073787, -36.085515627329229 ] ] } }, +{ "type": "Feature", "properties": { "name": "Noosa Main Beach", "id": "relation951808" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.086646434875632, -26.384214158331737 ], [ 153.086645, -26.3842194 ], [ 153.0870339, -26.3844404 ], [ 153.0877367, -26.3848249 ], [ 153.088359700000012, -26.3851204 ], [ 153.088943699999987, -26.3853487 ], [ 153.089563199999986, -26.3855842 ], [ 153.0901748, -26.3857475 ], [ 153.0908641, -26.3859157 ], [ 153.0915534, -26.3860791 ], [ 153.0920979, -26.386168 ], [ 153.0924574, -26.3861897 ], [ 153.092798, -26.3861488 ], [ 153.0932247, -26.386046 ], [ 153.093752200000011, -26.3857942 ], [ 153.093881401102323, -26.385641113754563 ] ] } }, +{ "type": "Feature", "properties": { "name": "Lady Margaret Beach", "id": "relation1249201" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.167951779136956, -33.949786380380125 ], [ 151.1679014, -33.9497705 ], [ 151.1677984, -33.9496337 ], [ 151.1672988, -33.9497155 ], [ 151.1662864, -33.9500285 ], [ 151.165578399999987, -33.9503986 ], [ 151.164150299999989, -33.9512785 ], [ 151.1631423, -33.9523271 ], [ 151.162499, -33.952917 ], [ 151.1620986, -33.9533041 ], [ 151.1618723, -33.9535871 ], [ 151.161562300000014, -33.9540971 ], [ 151.1610369, -33.954699 ], [ 151.1605203, -33.9552973 ], [ 151.160180200000013, -33.9558002 ], [ 151.1599779, -33.9561036 ], [ 151.159638199999989, -33.9568619 ], [ 151.159337, -33.9572624 ], [ 151.1591823, -33.9575271 ], [ 151.1588382, -33.9578247 ], [ 151.15845250000001, -33.9584393 ], [ 151.1579417, -33.9590919 ], [ 151.1577523, -33.9594371 ], [ 151.157241, -33.9606187 ], [ 151.1572284, -33.9612425 ], [ 151.1567623, -33.9622471 ], [ 151.1565287, -33.9626195 ], [ 151.1564423, -33.9627571 ], [ 151.1561223, -33.9635271 ], [ 151.155807, -33.9642228 ], [ 151.1554143, -33.9651646 ], [ 151.155106, -33.9660343 ], [ 151.1546615, -33.9670524 ], [ 151.154492299999987, -33.9673571 ], [ 151.154038899999989, -33.9682501 ], [ 151.1538337, -33.9687036 ], [ 151.1534799, -33.9698408 ], [ 151.1532023, -33.9701671 ], [ 151.1529954, -33.9705422 ], [ 151.1525617, -33.9712299 ], [ 151.152063199999986, -33.9722635 ], [ 151.1521244, -33.9726741 ], [ 151.151861, -33.9731763 ], [ 151.151242, -33.9749076 ], [ 151.151131099999986, -33.9752026 ], [ 151.1510926, -33.975701 ], [ 151.150902300000013, -33.9765571 ], [ 151.150358399999988, -33.9788317 ], [ 151.1500436, -33.9791219 ], [ 151.150005599999986, -33.9795575 ], [ 151.149877800000013, -33.9799718 ], [ 151.149648, -33.9804391 ], [ 151.149556499999989, -33.9807864 ], [ 151.1493443, -33.9810111 ], [ 151.14912910000001, -33.981368 ], [ 151.148932300000013, -33.9819171 ], [ 151.1486023, -33.9829471 ], [ 151.1484164, -33.983747 ], [ 151.14833010000001, -33.9847788 ], [ 151.1482135, -33.9849296 ], [ 151.1481937, -33.9849827 ], [ 151.148173899999989, -33.9858058 ], [ 151.1481899, -33.9858463 ], [ 151.1482447, -33.986095 ], [ 151.1483322, -33.9892858 ], [ 151.1481872, -33.9897755 ], [ 151.1482976, -33.9914908 ], [ 151.148345624470124, -33.991701803519369 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "relation1286351" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.155515770710451, -34.0637577304703 ], [ 151.1555538, -34.063802 ], [ 151.1555686, -34.0638882 ], [ 151.155547500000011, -34.0639303 ], [ 151.1555945, -34.0640278 ], [ 151.1556229, -34.0641865 ], [ 151.1557253, -34.0643216 ], [ 151.155884274511436, -34.0644304363963 ] ] } }, +{ "type": "Feature", "properties": { "name": "Diggers Camp Beach", "id": "relation1381327" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.28941920073629, -29.811198757930974 ], [ 153.289277700000014, -29.8113499 ], [ 153.2890337, -29.8113627 ], [ 153.2888891, -29.8115128 ], [ 153.2888505, -29.8117421 ], [ 153.2888159, -29.8122745 ], [ 153.2888218, -29.8127272 ], [ 153.2889433, -29.8132638 ], [ 153.2891487, -29.8137861 ], [ 153.289484499999986, -29.8143223 ], [ 153.2899282, -29.8148587 ], [ 153.2905762, -29.8153837 ], [ 153.290863699999989, -29.8155452 ], [ 153.2910389, -29.8157114 ], [ 153.2911172, -29.815874 ], [ 153.2911494, -29.8160616 ], [ 153.291133, -29.816382 ], [ 153.2911829, -29.8165853 ], [ 153.2913213, -29.8169694 ], [ 153.2915837, -29.8172798 ], [ 153.291789892637865, -29.8172633015337 ] ] } }, +{ "type": "Feature", "properties": { "name": "Spooky Beach", "id": "relation1382096" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.360044058585316, -29.475437214641524 ], [ 153.359880299999986, -29.4755627 ], [ 153.3598438, -29.4759673 ], [ 153.3598917, -29.4763302 ], [ 153.3600339, -29.4767432 ], [ 153.3602162, -29.4771299 ], [ 153.3605023, -29.477513 ], [ 153.360903799999988, -29.4779727 ], [ 153.3613824, -29.4783989 ], [ 153.361893900000013, -29.4786048 ], [ 153.3621282, -29.4785928 ], [ 153.362287713395403, -29.478462183310551 ] ] } }, +{ "type": "Feature", "properties": { "name": "Angourie Point", "id": "relation1382689" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.364886464630274, -29.481643044451257 ], [ 153.3648392, -29.4818437 ], [ 153.3651549, -29.4822908 ], [ 153.36532170000001, -29.4824984 ], [ 153.3655257, -29.4826013 ], [ 153.3656344, -29.4825316 ], [ 153.365717951118455, -29.48248534664982 ] ] } }, +{ "type": "Feature", "properties": { "name": "Lighthouse Beach", "id": "relation1384442" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.592923815119519, -28.868398632202819 ], [ 153.5927235, -28.8683545 ], [ 153.5918462, -28.8695729 ], [ 153.5911144, -28.8707359 ], [ 153.5904596, -28.872634 ], [ 153.5903669, -28.8733793 ], [ 153.59047480000001, -28.8742552 ], [ 153.590654428812485, -28.874354106309234 ] ] } }, +{ "type": "Feature", "properties": { "name": "Carlo Sandblow", "id": "relation1834884" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.100940975607529, -25.912536927224338 ], [ 153.101054, -25.9127023 ], [ 153.10254, -25.914725 ], [ 153.10336, -25.9159313 ], [ 153.103497086792004, -25.916086455692469 ] ] } }, +{ "type": "Feature", "properties": { "name": "Moon Bay", "id": "relation2238903" }, "geometry": { "type": "LineString", "coordinates": [ [ 149.990824106440783, -36.693942235614557 ], [ 149.990774499999986, -36.6939202 ], [ 149.990633, -36.6938255 ], [ 149.990185, -36.69404 ], [ 149.98989, -36.694308 ], [ 149.989786, -36.694498 ], [ 149.9895814, -36.6949266 ], [ 149.989638, -36.695252 ], [ 149.989748, -36.695499 ], [ 149.9899371, -36.695577 ], [ 149.990159623246655, -36.695551043946111 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bronte Beach", "id": "relation2250112" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.269594596330393, -33.902499370017622 ], [ 151.2693834, -33.9025524 ], [ 151.269269400000013, -33.9026303 ], [ 151.269018, -33.9028277 ], [ 151.268843, -33.9031071 ], [ 151.2687307, -33.9034238 ], [ 151.2685826, -33.9038933 ], [ 151.2686679, -33.9043366 ], [ 151.2686874, -33.9044446 ], [ 151.2687263, -33.9046607 ], [ 151.2687751, -33.9047121 ], [ 151.268865799999986, -33.9048075 ], [ 151.268909296645461, -33.904881904680771 ] ] } }, +{ "type": "Feature", "properties": { "name": "Maroubra Beach", "id": "relation2251446" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.258711727253569, -33.945374939993066 ], [ 151.2585032, -33.9453167 ], [ 151.2584577, -33.9453566 ], [ 151.2584147, -33.9454055 ], [ 151.2584094, -33.9454567 ], [ 151.2584711, -33.9456636 ], [ 151.2584711, -33.9458172 ], [ 151.2583584, -33.9459017 ], [ 151.2582146, -33.9460457 ], [ 151.2581036, -33.946231 ], [ 151.2580044, -33.9464202 ], [ 151.257856800000013, -33.9467116 ], [ 151.257696, -33.9471311 ], [ 151.257506400000011, -33.9476712 ], [ 151.2573746, -33.9480992 ], [ 151.2573284, -33.9484605 ], [ 151.2571283, -33.9492117 ], [ 151.257051499999989, -33.9495267 ], [ 151.256935199999987, -33.9501988 ], [ 151.2568766, -33.9512438 ], [ 151.2569394, -33.9519943 ], [ 151.2571427, -33.952566 ], [ 151.257484, -33.9529037 ], [ 151.25778840000001, -33.9532597 ], [ 151.257966399999987, -33.9536168 ], [ 151.2581217, -33.9537998 ], [ 151.258288, -33.9538955 ], [ 151.25836, -33.9539208 ], [ 151.258463, -33.9539572 ], [ 151.258679347380621, -33.953951695241877 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Entrance Beach", "id": "relation2303044" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.562552336479285, -33.296553702150632 ], [ 151.5623483, -33.29668 ], [ 151.5622544, -33.2965858 ], [ 151.562332199999986, -33.2965275 ], [ 151.562248399999987, -33.2962818 ], [ 151.5620673, -33.2961916 ], [ 151.5618747, -33.2961473 ], [ 151.5613253, -33.2961113 ], [ 151.5595801, -33.2960979 ], [ 151.557397400000013, -33.2964333 ], [ 151.5554682, -33.2971396 ], [ 151.5515323, -33.2989875 ], [ 151.548906, -33.3004352 ], [ 151.5479977, -33.3007883 ], [ 151.54382240000001, -33.3031127 ], [ 151.5394077, -33.3053842 ], [ 151.535591399999987, -33.3076792 ], [ 151.530705, -33.3107802 ], [ 151.526733799999988, -33.3136399 ], [ 151.5229458, -33.3166524 ], [ 151.5210377, -33.3182587 ], [ 151.5199886, -33.3191997 ], [ 151.5178587, -33.3212619 ], [ 151.5167884, -33.3223298 ], [ 151.5162463, -33.3232093 ], [ 151.514711299999988, -33.3247331 ], [ 151.513106, -33.3265981 ], [ 151.5114232, -33.3285218 ], [ 151.5101417, -33.3299455 ], [ 151.50937780000001, -33.3309103 ], [ 151.5081808, -33.3324663 ], [ 151.5068641, -33.3341782 ], [ 151.5064135, -33.3351488 ], [ 151.50553690000001, -33.3370165 ], [ 151.504769399999986, -33.3388194 ], [ 151.5045265, -33.3395018 ], [ 151.5043822, -33.3408841 ], [ 151.504142800000011, -33.3418193 ], [ 151.5042006, -33.3432696 ], [ 151.5039165, -33.344094 ], [ 151.5031113, -33.3447398 ], [ 151.5024568, -33.3449059 ], [ 151.502415854018665, -33.3451168814806 ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Beach", "id": "relation2580527" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.61426315356394, -28.727700207963355 ], [ 153.6141036, -28.7278288 ], [ 153.6134691, -28.7290985 ], [ 153.611120699999987, -28.7333824 ], [ 153.609045, -28.7376845 ], [ 153.6070459, -28.7423001 ], [ 153.6055192, -28.7458971 ], [ 153.6042349, -28.7493659 ], [ 153.600595199999987, -28.7596334 ], [ 153.598664, -28.7665498 ], [ 153.5983282, -28.7676144 ], [ 153.597833, -28.769318 ], [ 153.5973261, -28.7710828 ], [ 153.5968212, -28.773804 ], [ 153.5962341, -28.7762298 ], [ 153.5955346, -28.7792805 ], [ 153.5953753, -28.7831747 ], [ 153.5952251, -28.7838938 ], [ 153.595118899999989, -28.7845706 ], [ 153.5951044, -28.7849072 ], [ 153.595195100000012, -28.7855666 ], [ 153.595159599999988, -28.7860904 ], [ 153.5950148, -28.7866672 ], [ 153.5947817, -28.7882246 ], [ 153.594720599999988, -28.7893814 ], [ 153.5948391, -28.7910332 ], [ 153.594863299999986, -28.7921053 ], [ 153.5949225, -28.7927345 ], [ 153.5948909, -28.793282 ], [ 153.5950001, -28.7939514 ], [ 153.5951872, -28.7948044 ], [ 153.5952584, -28.7958956 ], [ 153.5954271, -28.7969862 ], [ 153.5957951, -28.7985089 ], [ 153.596357, -28.8001093 ], [ 153.5965281, -28.8005498 ], [ 153.596793100000014, -28.8009768 ], [ 153.5973167, -28.8014267 ], [ 153.59749519274223, -28.801527313730023 ] ] } }, +{ "type": "Feature", "properties": { "name": "Brays Beach", "id": "relation2580681" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.617448219176509, -28.716384346865695 ], [ 153.6172455, -28.7164125 ], [ 153.6170679, -28.7165832 ], [ 153.6168021, -28.717435 ], [ 153.6167072, -28.7183345 ], [ 153.6168912, -28.7188139 ], [ 153.617095905941511, -28.7188203804488 ] ] } }, +{ "type": "Feature", "properties": { "name": "Whites Beach", "id": "relation2580682" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.617731602764991, -28.723383460776979 ], [ 153.61755260000001, -28.7232843 ], [ 153.6172549, -28.7236679 ], [ 153.6159771, -28.7259152 ], [ 153.616055240760176, -28.726104392255962 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kings Beach", "id": "relation2580683" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.619152804880798, -28.707932151346839 ], [ 153.6189736, -28.7078332 ], [ 153.6180885, -28.7090788 ], [ 153.6178428, -28.7095827 ], [ 153.6176824, -28.7101104 ], [ 153.6176336, -28.7105731 ], [ 153.6176527, -28.7109825 ], [ 153.617857284541316, -28.710987859795676 ] ] } }, +{ "type": "Feature", "properties": { "name": "Seventy Five Mile Beach", "id": "relation2611157" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.359109984699359, -25.007876132038529 ], [ 153.3589658, -25.0080128 ], [ 153.3583542, -25.0084357 ], [ 153.357938499999989, -25.0086229 ], [ 153.357672900000011, -25.0086326 ], [ 153.3577181, -25.0096118 ], [ 153.3571019, -25.0136145 ], [ 153.3563936, -25.0157113 ], [ 153.3544158, -25.0221313 ], [ 153.3536674, -25.02422 ], [ 153.3520694, -25.0281203 ], [ 153.3498061, -25.0328453 ], [ 153.348907, -25.0345003 ], [ 153.3472119, -25.0374816 ], [ 153.3449583, -25.0416994 ], [ 153.3418383, -25.0471125 ], [ 153.3384437, -25.053648 ], [ 153.3365168, -25.0577106 ], [ 153.3312105, -25.0686717 ], [ 153.3305851, -25.0698247 ], [ 153.329558100000014, -25.0717184 ], [ 153.3282978, -25.0742378 ], [ 153.327710599999989, -25.0754116 ], [ 153.3270599, -25.0766006 ], [ 153.324951199999987, -25.0807601 ], [ 153.324356200000011, -25.0820617 ], [ 153.324021, -25.0827196 ], [ 153.323621800000012, -25.0837024 ], [ 153.3211269, -25.0891914 ], [ 153.3196388, -25.0923104 ], [ 153.318897600000014, -25.0943375 ], [ 153.3182682, -25.0958714 ], [ 153.3181942, -25.0960341 ], [ 153.31757970000001, -25.0973849 ], [ 153.3171156, -25.0984051 ], [ 153.3169796, -25.0987041 ], [ 153.3164748, -25.0998204 ], [ 153.316046300000011, -25.1008656 ], [ 153.3156774, -25.101522 ], [ 153.3152866, -25.1023025 ], [ 153.3150392, -25.1029326 ], [ 153.3140568, -25.1053319 ], [ 153.3137376, -25.1061115 ], [ 153.3131103, -25.1072687 ], [ 153.3129549, -25.1075554 ], [ 153.3123142, -25.1087372 ], [ 153.311956900000013, -25.1093963 ], [ 153.311644199999989, -25.1101667 ], [ 153.311063499999989, -25.1114533 ], [ 153.3109613, -25.1116798 ], [ 153.3106448, -25.1122936 ], [ 153.3102634, -25.1130331 ], [ 153.309515800000014, -25.114449 ], [ 153.309504299999986, -25.1144708 ], [ 153.309147599999989, -25.1152281 ], [ 153.3087404, -25.1159948 ], [ 153.3083882, -25.1168402 ], [ 153.307974, -25.1176333 ], [ 153.3077658, -25.1180319 ], [ 153.3076681, -25.118219 ], [ 153.3073221, -25.1189589 ], [ 153.307250399999987, -25.1191199 ], [ 153.3064793, -25.1208526 ], [ 153.3033326, -25.1275539 ], [ 153.302652099999989, -25.128885 ], [ 153.3026236, -25.1289328 ], [ 153.3023804, -25.1293412 ], [ 153.3022919, -25.12955 ], [ 153.3022597, -25.1298147 ], [ 153.302004899999986, -25.1302639 ], [ 153.301688399999989, -25.130684 ], [ 153.301632500000011, -25.1308741 ], [ 153.3015007, -25.1312717 ], [ 153.3014765, -25.1316213 ], [ 153.30114660000001, -25.1323863 ], [ 153.301052700000014, -25.1329035 ], [ 153.3008543, -25.1335033 ], [ 153.297361, -25.1405915 ], [ 153.297235199999989, -25.1408614 ], [ 153.2965643, -25.1424353 ], [ 153.2963806, -25.143067 ], [ 153.2957112, -25.1443864 ], [ 153.295510900000011, -25.1448035 ], [ 153.295495, -25.1448382 ], [ 153.2945454, -25.1469121 ], [ 153.294136900000012, -25.1479689 ], [ 153.2938768, -25.1484858 ], [ 153.293634700000013, -25.1486675 ], [ 153.2936967, -25.1488438 ], [ 153.2933477, -25.1495374 ], [ 153.2924782, -25.1513207 ], [ 153.2911747, -25.1541185 ], [ 153.290961399999986, -25.1547172 ], [ 153.2905544, -25.1555495 ], [ 153.289186199999989, -25.1586621 ], [ 153.287974100000014, -25.1616566 ], [ 153.2860741, -25.1656825 ], [ 153.284915399999988, -25.1683708 ], [ 153.2845893, -25.1687461 ], [ 153.284244199999989, -25.1694143 ], [ 153.2837194, -25.1711916 ], [ 153.2834483, -25.1715412 ], [ 153.283244599999989, -25.1720077 ], [ 153.2827929, -25.1731295 ], [ 153.282187599999986, -25.1744828 ], [ 153.2818958, -25.1753168 ], [ 153.2808229, -25.1774457 ], [ 153.2793097, -25.1804576 ], [ 153.277519, -25.1840514 ], [ 153.2771596, -25.1847684 ], [ 153.2769434, -25.1852247 ], [ 153.2760782, -25.1870819 ], [ 153.2758624, -25.1875451 ], [ 153.2748373, -25.1896402 ], [ 153.274428, -25.1909951 ], [ 153.273752, -25.1920492 ], [ 153.273709200000013, -25.1921159 ], [ 153.273673800000012, -25.1927489 ], [ 153.2723809, -25.1954717 ], [ 153.2722755, -25.1956937 ], [ 153.271127299999989, -25.1978946 ], [ 153.2705121, -25.1990935 ], [ 153.2697751, -25.2006457 ], [ 153.2695526, -25.2009997 ], [ 153.269283, -25.2019344 ], [ 153.2690829, -25.2024066 ], [ 153.2682017, -25.2042231 ], [ 153.2678492, -25.2049497 ], [ 153.2671066, -25.2064804 ], [ 153.2664388, -25.207857 ], [ 153.265715699999987, -25.2090488 ], [ 153.265618100000012, -25.2092919 ], [ 153.2650381, -25.2107359 ], [ 153.2645086, -25.2119189 ], [ 153.263963600000011, -25.2129235 ], [ 153.2634124, -25.2140563 ], [ 153.2629349, -25.2145557 ], [ 153.2620791, -25.2162296 ], [ 153.2617009, -25.2171187 ], [ 153.2611339, -25.2183917 ], [ 153.2608394, -25.2187377 ], [ 153.25991350000001, -25.2207721 ], [ 153.259542, -25.2214511 ], [ 153.258716600000014, -25.2231743 ], [ 153.2583315, -25.2238305 ], [ 153.2578423, -25.2245798 ], [ 153.2576717, -25.2252562 ], [ 153.257408, -25.2258006 ], [ 153.2564738, -25.2277288 ], [ 153.2563059, -25.2282194 ], [ 153.2561211, -25.2287105 ], [ 153.254864199999986, -25.2313662 ], [ 153.254741599999988, -25.2315973 ], [ 153.2537455, -25.2334748 ], [ 153.2535245, -25.2339639 ], [ 153.2532192, -25.2345671 ], [ 153.2530358, -25.2351052 ], [ 153.252333, -25.2365826 ], [ 153.2519141, -25.2375843 ], [ 153.2517025, -25.2382706 ], [ 153.2512247, -25.2391875 ], [ 153.2498756, -25.2418039 ], [ 153.249646399999989, -25.2421109 ], [ 153.2495242, -25.2422619 ], [ 153.24942870000001, -25.2427486 ], [ 153.248822600000011, -25.2440298 ], [ 153.24827830000001, -25.2451483 ], [ 153.2467733, -25.2478224 ], [ 153.2466473, -25.2483867 ], [ 153.246342, -25.2493328 ], [ 153.246225, -25.2497311 ], [ 153.2460652, -25.2501534 ], [ 153.2460341, -25.2502357 ], [ 153.2458531, -25.2506656 ], [ 153.2457152, -25.2509934 ], [ 153.245537399999989, -25.2511809 ], [ 153.245165500000013, -25.2515732 ], [ 153.244732199999987, -25.2520304 ], [ 153.2447176, -25.2521281 ], [ 153.2446254, -25.2527436 ], [ 153.244123300000012, -25.2537125 ], [ 153.2438192, -25.2544101 ], [ 153.2436304, -25.2548435 ], [ 153.2434503, -25.2552567 ], [ 153.243377, -25.2554248 ], [ 153.2431793, -25.2558254 ], [ 153.2429502, -25.2562896 ], [ 153.2424698, -25.2572631 ], [ 153.242073299999987, -25.2580664 ], [ 153.2419274, -25.258362 ], [ 153.2408226, -25.2606008 ], [ 153.240340800000013, -25.2615768 ], [ 153.2363437, -25.2696755 ], [ 153.2332437, -25.2759561 ], [ 153.2321923, -25.2781932 ], [ 153.2315845, -25.2794864 ], [ 153.2309328, -25.2808729 ], [ 153.2284457, -25.2860711 ], [ 153.2281031, -25.286735 ], [ 153.227693, -25.2873706 ], [ 153.2265582, -25.2895263 ], [ 153.2261083, -25.2901905 ], [ 153.2257491, -25.2910186 ], [ 153.2253902, -25.2912503 ], [ 153.2242855, -25.2932467 ], [ 153.2235942, -25.2939485 ], [ 153.223356, -25.2943516 ], [ 153.223054, -25.294693 ], [ 153.2228979, -25.2953478 ], [ 153.2226801, -25.296035 ], [ 153.2226858, -25.296191 ], [ 153.2227015, -25.2966162 ], [ 153.2224373, -25.2974044 ], [ 153.2224247, -25.2982275 ], [ 153.2221585, -25.2987835 ], [ 153.2204418, -25.3021441 ], [ 153.2188, -25.3051328 ], [ 153.2187046, -25.3057887 ], [ 153.21851, -25.3061862 ], [ 153.2183516, -25.3063514 ], [ 153.2175803, -25.3082473 ], [ 153.217313600000011, -25.3089029 ], [ 153.2169439, -25.3092838 ], [ 153.2147235, -25.3136392 ], [ 153.2135553, -25.3165274 ], [ 153.213097, -25.3172224 ], [ 153.2130119, -25.3177593 ], [ 153.2124892, -25.3186668 ], [ 153.2118171, -25.3197327 ], [ 153.2113125, -25.3207751 ], [ 153.2112139, -25.3213203 ], [ 153.2110343, -25.3217063 ], [ 153.2099215, -25.3237185 ], [ 153.2096315, -25.3246295 ], [ 153.20893430000001, -25.3259929 ], [ 153.20805, -25.3279312 ], [ 153.207658400000014, -25.3287896 ], [ 153.2059092, -25.3325774 ], [ 153.2044965, -25.3355916 ], [ 153.2038355, -25.3373642 ], [ 153.203251200000011, -25.338242 ], [ 153.203005499999989, -25.3387102 ], [ 153.2026199, -25.340283 ], [ 153.2020298, -25.3404658 ], [ 153.2020513, -25.3412289 ], [ 153.2019161, -25.3419329 ], [ 153.201535299999989, -25.3426553 ], [ 153.200959899999987, -25.3434551 ], [ 153.2004916, -25.3445063 ], [ 153.2003636, -25.3452645 ], [ 153.1997816, -25.3470408 ], [ 153.1997725, -25.3473845 ], [ 153.199445200000014, -25.3474864 ], [ 153.198995700000012, -25.3482708 ], [ 153.196755, -25.3528234 ], [ 153.1945614, -25.35731 ], [ 153.1922959, -25.3621756 ], [ 153.1917253, -25.3630231 ], [ 153.19133260000001, -25.3643518 ], [ 153.1905074, -25.3660702 ], [ 153.190207500000014, -25.3666028 ], [ 153.1898526, -25.3670781 ], [ 153.1896674, -25.367689 ], [ 153.188039800000013, -25.3709767 ], [ 153.1877972, -25.3718688 ], [ 153.1875131, -25.3724588 ], [ 153.1872129, -25.3734363 ], [ 153.1861055, -25.3757569 ], [ 153.1819465, -25.3851352 ], [ 153.1806274, -25.3880203 ], [ 153.1792359, -25.3911863 ], [ 153.1788556, -25.3922285 ], [ 153.177789600000011, -25.394458 ], [ 153.1764083, -25.3973632 ], [ 153.17548930000001, -25.3996698 ], [ 153.1718115, -25.4077351 ], [ 153.171183899999988, -25.4094993 ], [ 153.1699774, -25.4123576 ], [ 153.169191500000011, -25.4138941 ], [ 153.1688385, -25.4155226 ], [ 153.16834, -25.4175124 ], [ 153.1680369, -25.4181543 ], [ 153.1676369, -25.4188069 ], [ 153.1672639, -25.4194821 ], [ 153.1671916, -25.4197752 ], [ 153.165364899999986, -25.4236559 ], [ 153.164707, -25.4248429 ], [ 153.1642817, -25.4260016 ], [ 153.163720899999987, -25.4271737 ], [ 153.1624988, -25.4299818 ], [ 153.1623841, -25.430178 ], [ 153.1618536, -25.4311544 ], [ 153.161768, -25.4316194 ], [ 153.1606299, -25.4339535 ], [ 153.1594744, -25.4364317 ], [ 153.159341399999988, -25.4365993 ], [ 153.1590525, -25.4374384 ], [ 153.15843670000001, -25.4387963 ], [ 153.158264, -25.439075 ], [ 153.1573409, -25.4410441 ], [ 153.1568178, -25.4426513 ], [ 153.1558796, -25.4445069 ], [ 153.1555818, -25.4452838 ], [ 153.1555176, -25.4453674 ], [ 153.1551475, -25.4456094 ], [ 153.1550463, -25.4464503 ], [ 153.1546779, -25.4468434 ], [ 153.154098800000014, -25.4484729 ], [ 153.153862, -25.4487971 ], [ 153.1537564, -25.4494514 ], [ 153.1532731, -25.4500286 ], [ 153.1529902, -25.4503772 ], [ 153.1529851, -25.4508896 ], [ 153.1527544, -25.4511047 ], [ 153.1521354, -25.4525007 ], [ 153.1512878, -25.4547365 ], [ 153.14965380000001, -25.4584467 ], [ 153.148108799999989, -25.4620677 ], [ 153.147558, -25.4633809 ], [ 153.1470644, -25.464582 ], [ 153.1464583, -25.4660156 ], [ 153.1461579, -25.4666888 ], [ 153.1457609, -25.467643 ], [ 153.1448275, -25.4698853 ], [ 153.1442008, -25.4714868 ], [ 153.1437492, -25.4725683 ], [ 153.1429231, -25.4742973 ], [ 153.142612, -25.4746798 ], [ 153.1424457, -25.4747912 ], [ 153.142451, -25.4750043 ], [ 153.14235450000001, -25.475445 ], [ 153.1418663, -25.4767138 ], [ 153.141045600000012, -25.4787768 ], [ 153.1400961, -25.4808979 ], [ 153.139479200000011, -25.4824669 ], [ 153.1387389, -25.4842732 ], [ 153.137810800000011, -25.4866314 ], [ 153.1373495, -25.4875176 ], [ 153.1366414, -25.4892415 ], [ 153.13559, -25.4918805 ], [ 153.13494080000001, -25.4934726 ], [ 153.1341952, -25.4951295 ], [ 153.13297750000001, -25.4979572 ], [ 153.132205, -25.4996422 ], [ 153.131432499999988, -25.5016806 ], [ 153.1306708, -25.5034188 ], [ 153.1302949, -25.5042743 ], [ 153.1300592, -25.5048713 ], [ 153.1293297, -25.5062705 ], [ 153.129056100000014, -25.507297 ], [ 153.128460600000011, -25.5087204 ], [ 153.128112, -25.5094563 ], [ 153.1277311, -25.5097661 ], [ 153.127488699999986, -25.5098848 ], [ 153.127479, -25.5104391 ], [ 153.127173199999987, -25.5116107 ], [ 153.1265026, -25.5133923 ], [ 153.1262773, -25.5140217 ], [ 153.125816, -25.5149899 ], [ 153.1253922, -25.5160405 ], [ 153.1247055, -25.5178027 ], [ 153.124324699999988, -25.5186256 ], [ 153.1240243, -25.5195842 ], [ 153.123595099999989, -25.5206395 ], [ 153.1232411, -25.5216271 ], [ 153.1227261, -25.5228083 ], [ 153.1221306, -25.5241928 ], [ 153.1218141, -25.5249818 ], [ 153.1215942, -25.5256111 ], [ 153.1213582, -25.5262211 ], [ 153.1209397, -25.5270973 ], [ 153.120623200000011, -25.5278089 ], [ 153.120231600000011, -25.5287141 ], [ 153.1196898, -25.5302824 ], [ 153.119158700000014, -25.5316039 ], [ 153.1188583, -25.5322768 ], [ 153.118692, -25.5329351 ], [ 153.11848280000001, -25.533424 ], [ 153.118268199999989, -25.533879 ], [ 153.1181502, -25.5340097 ], [ 153.1180537, -25.5341404 ], [ 153.1179893, -25.5344647 ], [ 153.1177854, -25.5350939 ], [ 153.1176084, -25.5355586 ], [ 153.1174368, -25.5360233 ], [ 153.1171095, -25.5366622 ], [ 153.116937900000011, -25.5368026 ], [ 153.1168199, -25.5368945 ], [ 153.1168628, -25.5371656 ], [ 153.1168413, -25.5373834 ], [ 153.1167608, -25.5376448 ], [ 153.1166428, -25.5379013 ], [ 153.116514099999989, -25.538003 ], [ 153.116439, -25.5380901 ], [ 153.1164283, -25.5382595 ], [ 153.116439, -25.5384628 ], [ 153.116390700000011, -25.5386613 ], [ 153.1162888, -25.5388791 ], [ 153.1161761, -25.5390533 ], [ 153.1160152, -25.5391792 ], [ 153.115816700000011, -25.5394067 ], [ 153.115703700000012, -25.5396152 ], [ 153.1157738, -25.5401375 ], [ 153.115688, -25.5404957 ], [ 153.115548499999989, -25.5408975 ], [ 153.115366099999989, -25.5414057 ], [ 153.115012, -25.5422382 ], [ 153.114346899999987, -25.5437677 ], [ 153.1138319, -25.5453261 ], [ 153.113697800000011, -25.5455294 ], [ 153.113542200000012, -25.5456795 ], [ 153.1134027, -25.5457327 ], [ 153.1133223, -25.5458489 ], [ 153.1133223, -25.5459941 ], [ 153.1133008, -25.5462748 ], [ 153.1131452, -25.5468556 ], [ 153.1130379, -25.5471799 ], [ 153.1127214, -25.5478817 ], [ 153.1124371, -25.5486464 ], [ 153.112244, -25.5491787 ], [ 153.1120884, -25.5494933 ], [ 153.1118524, -25.5498273 ], [ 153.1116164, -25.5500402 ], [ 153.111342799999989, -25.550892 ], [ 153.1112355, -25.5516035 ], [ 153.1109941, -25.552252 ], [ 153.1108332, -25.5529344 ], [ 153.1105918, -25.5535297 ], [ 153.1102163, -25.5546138 ], [ 153.11007140000001, -25.5549574 ], [ 153.109937300000013, -25.5550397 ], [ 153.1097656, -25.5551074 ], [ 153.109781700000013, -25.5553446 ], [ 153.1098247, -25.5554704 ], [ 153.1098193, -25.5557075 ], [ 153.1097335, -25.5559737 ], [ 153.109620799999988, -25.5562399 ], [ 153.1094974, -25.556598 ], [ 153.1091219, -25.5576046 ], [ 153.108762500000012, -25.5584322 ], [ 153.108580100000012, -25.5589984 ], [ 153.1084567, -25.5594001 ], [ 153.1083226, -25.5597437 ], [ 153.108081199999987, -25.5599518 ], [ 153.1076356, -25.5603471 ], [ 153.107507199999986, -25.5605035 ], [ 153.1074858, -25.5606293 ], [ 153.10756090000001, -25.5607696 ], [ 153.1076682, -25.5608132 ], [ 153.1077486, -25.5608906 ], [ 153.1077754, -25.5611374 ], [ 153.107689599999986, -25.5613842 ], [ 153.1072766, -25.5624489 ], [ 153.1066596, -25.5640797 ], [ 153.106268, -25.5651831 ], [ 153.1058013, -25.5664316 ], [ 153.1056726, -25.5667849 ], [ 153.1053547, -25.5677097 ], [ 153.1047177, -25.5695625 ], [ 153.1040633, -25.571861 ], [ 153.1029528, -25.5746337 ], [ 153.10147760000001, -25.5788821 ], [ 153.1003028, -25.5821095 ], [ 153.099986300000012, -25.5830239 ], [ 153.099643, -25.5836723 ], [ 153.0994892, -25.5840594 ], [ 153.0988222, -25.5857383 ], [ 153.0986237, -25.5866382 ], [ 153.0983663, -25.5876446 ], [ 153.0982268, -25.5882494 ], [ 153.0979156, -25.5893719 ], [ 153.0977011, -25.5898702 ], [ 153.097347, -25.5907992 ], [ 153.0966604, -25.5927683 ], [ 153.0962634, -25.594152 ], [ 153.095485599999989, -25.5965226 ], [ 153.0946537, -25.59894 ], [ 153.0930444, -25.6041841 ], [ 153.0915588, -25.6096617 ], [ 153.0910059, -25.6112275 ], [ 153.0898472, -25.6155443 ], [ 153.0896974, -25.6160445 ], [ 153.0894266, -25.6167169 ], [ 153.0893916, -25.616804 ], [ 153.0891958, -25.6174545 ], [ 153.088970499999988, -25.6182454 ], [ 153.0888444, -25.6190024 ], [ 153.0885816, -25.6200351 ], [ 153.0878516, -25.6228579 ], [ 153.086714300000011, -25.6273058 ], [ 153.0860817, -25.6297547 ], [ 153.085851100000014, -25.6305769 ], [ 153.0854487, -25.6322358 ], [ 153.0848479, -25.6347653 ], [ 153.0845797, -25.6359502 ], [ 153.084359799999987, -25.6369126 ], [ 153.083603, -25.6397278 ], [ 153.082197900000011, -25.6463382 ], [ 153.081929699999989, -25.647876 ], [ 153.0814791, -25.6499748 ], [ 153.0809104, -25.6529342 ], [ 153.080599299999989, -25.6545107 ], [ 153.079446, -25.6608355 ], [ 153.0787861, -25.6645199 ], [ 153.078614499999986, -25.666043 ], [ 153.0779278, -25.67082 ], [ 153.0774446, -25.6739419 ], [ 153.077332399999989, -25.6754381 ], [ 153.0773118, -25.6757134 ], [ 153.077015499999987, -25.6796661 ], [ 153.076940799999988, -25.682607 ], [ 153.076919299999986, -25.6845891 ], [ 153.076892500000014, -25.6869918 ], [ 153.0770427, -25.6899938 ], [ 153.077209, -25.6928073 ], [ 153.0776113, -25.6980715 ], [ 153.077809800000011, -25.7001886 ], [ 153.077978800000011, -25.7013197 ], [ 153.0782738, -25.7046187 ], [ 153.078526, -25.7070814 ], [ 153.0785823, -25.7078982 ], [ 153.078483, -25.7084347 ], [ 153.078445499999987, -25.7096407 ], [ 153.0784938, -25.7100684 ], [ 153.0785903, -25.7101651 ], [ 153.0787271, -25.7103028 ], [ 153.0788586, -25.710733 ], [ 153.079006099999987, -25.7124826 ], [ 153.079749, -25.7184709 ], [ 153.0800307, -25.7209864 ], [ 153.0807495, -25.7251523 ], [ 153.0811139, -25.7269989 ], [ 153.081564899999989, -25.7287672 ], [ 153.082219400000014, -25.7318116 ], [ 153.0828309, -25.7343728 ], [ 153.0836248, -25.7372045 ], [ 153.084493900000012, -25.7404518 ], [ 153.0854702, -25.743235 ], [ 153.0865856, -25.7459974 ], [ 153.0869722, -25.7467527 ], [ 153.0871439, -25.7474001 ], [ 153.0871975, -25.7480573 ], [ 153.087337, -25.7486467 ], [ 153.0874658, -25.7493135 ], [ 153.0875941, -25.7501334 ], [ 153.0875838, -25.7522319 ], [ 153.0875194, -25.7536234 ], [ 153.0874121, -25.7545897 ], [ 153.0866718, -25.7577108 ], [ 153.0864894, -25.7601168 ], [ 153.0864894, -25.7622909 ], [ 153.0856633, -25.7656341 ], [ 153.0845153, -25.7692477 ], [ 153.0838609, -25.7709578 ], [ 153.0826753, -25.7739577 ], [ 153.0812645, -25.7775566 ], [ 153.08081390000001, -25.7794888 ], [ 153.08044910000001, -25.7820586 ], [ 153.0803096, -25.7840584 ], [ 153.0801701, -25.7864252 ], [ 153.0799609, -25.7873864 ], [ 153.0795024, -25.7886443 ], [ 153.078946699999989, -25.7899787 ], [ 153.07736460000001, -25.7922552 ], [ 153.0757391, -25.7929362 ], [ 153.0749023, -25.7932598 ], [ 153.074559, -25.793424 ], [ 153.074178100000012, -25.7936752 ], [ 153.073131600000011, -25.7940562 ], [ 153.072381, -25.7941872 ], [ 153.071807, -25.7942113 ], [ 153.070964800000013, -25.7944238 ], [ 153.0702996, -25.7946605 ], [ 153.069891899999988, -25.7947813 ], [ 153.069789735382273, -25.794951866969146 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation2723197" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.84052233716406, -31.607873039275951 ], [ 152.8404405, -31.6080673 ], [ 152.84035, -31.60872 ], [ 152.839869, -31.6093533 ], [ 152.83959, -31.60975 ], [ 152.83929, -31.61027 ], [ 152.839079199999986, -31.6109067 ], [ 152.8383292, -31.6126079 ], [ 152.83809, -31.6131 ], [ 152.8378049, -31.6137426 ], [ 152.83734, -31.61476 ], [ 152.8371454, -31.6152066 ], [ 152.83688, -31.61592 ], [ 152.83658, -31.61645 ], [ 152.83628, -31.61721 ], [ 152.83597, -31.61798 ], [ 152.83567, -31.61901 ], [ 152.83507, -31.62106 ], [ 152.83476, -31.62286 ], [ 152.834487200000012, -31.6249699 ], [ 152.8342169, -31.6269378 ], [ 152.83393670000001, -31.6295257 ], [ 152.8338946, -31.6313729 ], [ 152.8340433, -31.6324713 ], [ 152.8341423, -31.6332386 ], [ 152.83422920000001, -31.6341514 ], [ 152.834398, -31.634639 ], [ 152.8346482, -31.6350133 ], [ 152.8348887, -31.6353393 ], [ 152.83504, -31.63546 ], [ 152.83534, -31.63563 ], [ 152.835549443103275, -31.635605755549548 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation2723198" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.843516263791997, -31.603760423830693 ], [ 152.8433138, -31.6038187 ], [ 152.842965600000014, -31.6043537 ], [ 152.8427317, -31.6046223 ], [ 152.8425054, -31.6049627 ], [ 152.8423192, -31.6053213 ], [ 152.8422318, -31.6055644 ], [ 152.8420226, -31.6059518 ], [ 152.8416422, -31.6063356 ], [ 152.8414, -31.60641 ], [ 152.8414, -31.606620914434195 ] ] } }, +{ "type": "Feature", "properties": { "name": "Burwood Beach", "id": "relation2874470" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.74678666663695, -32.956535971331739 ], [ 151.7467574, -32.9564821 ], [ 151.7468064, -32.9563096 ], [ 151.7461606, -32.9564775 ], [ 151.745438, -32.9571182 ], [ 151.74428180000001, -32.9577361 ], [ 151.7435481, -32.9582401 ], [ 151.743085, -32.9586442 ], [ 151.7428424, -32.9588644 ], [ 151.7427762, -32.9589185 ], [ 151.7422712, -32.9594179 ], [ 151.7417518, -32.9596216 ], [ 151.741005800000011, -32.9604606 ], [ 151.7399073, -32.9613629 ], [ 151.7393777, -32.961971 ], [ 151.738808799999987, -32.9624222 ], [ 151.7386873, -32.9626364 ], [ 151.7386492, -32.9627013 ], [ 151.7386085, -32.9627687 ], [ 151.738313799999986, -32.9630139 ], [ 151.7381408, -32.9631578 ], [ 151.7375371, -32.9638592 ], [ 151.7373122, -32.9641608 ], [ 151.7371224, -32.9647622 ], [ 151.7371398, -32.9654389 ], [ 151.7371881, -32.9656142 ], [ 151.737207261578845, -32.965642114398825 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Steyne Beach", "id": "relation2970109" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.287995599670921, -33.790413451723367 ], [ 151.28798230000001, -33.7904831 ], [ 151.287958300000014, -33.7908271 ], [ 151.2879369, -33.7909602 ], [ 151.28789660000001, -33.7913882 ], [ 151.2878663, -33.7919431 ], [ 151.2878753, -33.7923591 ], [ 151.2879073, -33.7924601 ], [ 151.287936300000013, -33.7927471 ], [ 151.2879399, -33.7929802 ], [ 151.2879433, -33.7932051 ], [ 151.2880203, -33.7936511 ], [ 151.288048300000014, -33.7939381 ], [ 151.2880653, -33.7939951 ], [ 151.288059, -33.794297 ], [ 151.2880714, -33.7945401 ], [ 151.2881794, -33.7950861 ], [ 151.288386800000012, -33.795792 ], [ 151.288450552953975, -33.795998404404969 ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Beach", "id": "relation2978551" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.330554244751482, -33.582123833515155 ], [ 151.330346100000014, -33.5820675 ], [ 151.3298488, -33.5825975 ], [ 151.3296372, -33.5829129 ], [ 151.3293098, -33.5831718 ], [ 151.3289881, -33.5834358 ], [ 151.3287842, -33.5836682 ], [ 151.328430200000014, -33.5840168 ], [ 151.3281298, -33.5845039 ], [ 151.3279152, -33.5849955 ], [ 151.3276792, -33.5853843 ], [ 151.327512899999988, -33.5858446 ], [ 151.327282200000013, -33.586135 ], [ 151.327026, -33.5866169 ], [ 151.3268048, -33.5870511 ], [ 151.3267243, -33.5874667 ], [ 151.326600899999988, -33.5877215 ], [ 151.3264131, -33.5880924 ], [ 151.3262415, -33.5885795 ], [ 151.3261181, -33.5890442 ], [ 151.3259357, -33.5894419 ], [ 151.325796200000013, -33.5899156 ], [ 151.32572110000001, -33.5902954 ], [ 151.3256836, -33.5904876 ], [ 151.325560200000012, -33.5907915 ], [ 151.3255119, -33.5910819 ], [ 151.3254851, -33.5913947 ], [ 151.3253671, -33.5918014 ], [ 151.3252866, -33.592132 ], [ 151.3251632, -33.5923689 ], [ 151.3251268, -33.5927703 ], [ 151.3250667, -33.5929252 ], [ 151.3250291, -33.5931196 ], [ 151.3249621, -33.5935486 ], [ 151.3249031, -33.5939619 ], [ 151.3248575, -33.5942434 ], [ 151.324840099999989, -33.5944998 ], [ 151.324817200000012, -33.5947416 ], [ 151.3248146, -33.5949494 ], [ 151.324811899999986, -33.5952153 ], [ 151.324817200000012, -33.5954119 ], [ 151.324803800000012, -33.5955996 ], [ 151.324817200000012, -33.5957984 ], [ 151.3248146, -33.5960576 ], [ 151.3248333, -33.5963167 ], [ 151.3248494, -33.5966451 ], [ 151.3249031, -33.5969423 ], [ 151.3249299, -33.597264 ], [ 151.325007699999986, -33.5976192 ], [ 151.3251176, -33.5980124 ], [ 151.325283899999988, -33.5983409 ], [ 151.3254181, -33.5985911 ], [ 151.3255012, -33.5988435 ], [ 151.325675499999988, -33.5990803 ], [ 151.3258284, -33.5992836 ], [ 151.3260162, -33.5994266 ], [ 151.326195899999988, -33.5996098 ], [ 151.326458699999989, -33.5998377 ], [ 151.3267592, -33.6000254 ], [ 151.327113200000014, -33.6001706 ], [ 151.3273466, -33.6002264 ], [ 151.327666, -33.600211 ], [ 151.327791055682923, -33.600035573566998 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fishermans Beach", "id": "relation3359340" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.304866565717361, -33.733681572905354 ], [ 151.30494250000001, -33.7338559 ], [ 151.304819900000012, -33.7338925 ], [ 151.304933, -33.734037 ], [ 151.305061599999988, -33.7341471 ], [ 151.305277600000011, -33.7344887 ], [ 151.3053617, -33.734509 ], [ 151.305431199999987, -33.7345598 ], [ 151.305448399999989, -33.7346668 ], [ 151.305428799999987, -33.7347893 ], [ 151.3055718, -33.7350813 ], [ 151.3058452, -33.7353837 ], [ 151.3059271, -33.7355222 ], [ 151.3059812, -33.7357253 ], [ 151.3059826, -33.7360462 ], [ 151.3060159, -33.7363763 ], [ 151.3061075, -33.7366359 ], [ 151.306268499999987, -33.7370376 ], [ 151.3064642, -33.7374808 ], [ 151.3066543, -33.7377474 ], [ 151.306983300000013, -33.7381537 ], [ 151.3073788, -33.7384306 ], [ 151.3077036, -33.7386407 ], [ 151.307742499999989, -33.738658 ], [ 151.308113, -33.7388231 ], [ 151.30867090000001, -33.7389973 ], [ 151.3091248, -33.7390931 ], [ 151.3095717, -33.7390827 ], [ 151.3100971, -33.7389143 ], [ 151.31036, -33.7388311 ], [ 151.310428292798349, -33.738823954074356 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation3429622" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.50377394011511, -33.354292571430086 ], [ 151.50355540000001, -33.3542716 ], [ 151.503340799999989, -33.35424 ], [ 151.5030518, -33.354242 ], [ 151.5026522, -33.3543841 ], [ 151.5023462, -33.3545744 ], [ 151.502126, -33.354801 ], [ 151.501977900000014, -33.355271 ], [ 151.5018743, -33.3556875 ], [ 151.5019677, -33.3559665 ], [ 151.502123399999988, -33.3563518 ], [ 151.502227, -33.3568532 ], [ 151.502263199999987, -33.3570808 ], [ 151.502235500000012, -33.3573045 ], [ 151.5021408, -33.3574785 ], [ 151.5017152, -33.3575929 ], [ 151.501157299999988, -33.3579288 ], [ 151.500784399999986, -33.3584325 ], [ 151.5005458, -33.3588237 ], [ 151.5003256, -33.3593719 ], [ 151.5003163, -33.3601016 ], [ 151.500441, -33.3609402 ], [ 151.500684299999989, -33.3614611 ], [ 151.501026200000013, -33.3618851 ], [ 151.501886500000012, -33.3622851 ], [ 151.502629899999988, -33.3623576 ], [ 151.502785338111721, -33.362209193101179 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation3433510" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.233720415572151, -29.982489234586094 ], [ 153.2335524, -29.9823679 ], [ 153.2335343, -29.982227 ], [ 153.2334462, -29.9821316 ], [ 153.2332858, -29.9821235 ], [ 153.2330512, -29.9821802 ], [ 153.2330179, -29.9821986 ], [ 153.232774, -29.982333 ], [ 153.232371, -29.9826443 ], [ 153.23208, -29.9829354 ], [ 153.231930299999988, -29.9830851 ], [ 153.231482699999987, -29.9836467 ], [ 153.231452600000011, -29.9836874 ], [ 153.2305488, -29.9849081 ], [ 153.2303609, -29.9851857 ], [ 153.2285769, -29.9878222 ], [ 153.2268274, -29.9903543 ], [ 153.225236099999989, -29.9924229 ], [ 153.223532299999988, -29.9948595 ], [ 153.2219723, -29.997302 ], [ 153.2208775, -29.9989523 ], [ 153.2196724, -30.000825 ], [ 153.2185007, -30.0024269 ], [ 153.21745580000001, -30.0039755 ], [ 153.2164426, -30.0056373 ], [ 153.215521, -30.0075215 ], [ 153.214738, -30.0087936 ], [ 153.2135438, -30.0106451 ], [ 153.2120425, -30.0134139 ], [ 153.2115435, -30.0143799 ], [ 153.2109615, -30.015256 ], [ 153.2103933, -30.016462 ], [ 153.209692100000012, -30.0177703 ], [ 153.2084783, -30.0196573 ], [ 153.20744830000001, -30.0211179 ], [ 153.2066599, -30.022148 ], [ 153.206194, -30.0234938 ], [ 153.206201, -30.0244957 ], [ 153.2061247, -30.0248077 ], [ 153.2058891, -30.0250537 ], [ 153.2053314, -30.025491 ], [ 153.2050715, -30.0258036 ], [ 153.2048567, -30.0262176 ], [ 153.2045944, -30.0265618 ], [ 153.2040321, -30.0269675 ], [ 153.2035955, -30.0273215 ], [ 153.203325299999989, -30.0275495 ], [ 153.203249, -30.0277234 ], [ 153.2030799, -30.0285816 ], [ 153.202805500000011, -30.0294032 ], [ 153.202493299999986, -30.0297266 ], [ 153.201683, -30.0303991 ], [ 153.201617, -30.0304661 ], [ 153.2010455, -30.031047 ], [ 153.2006782, -30.031587 ], [ 153.200196299999988, -30.0323459 ], [ 153.199901399999987, -30.0328747 ], [ 153.1990575, -30.0343881 ], [ 153.1984902, -30.0355863 ], [ 153.1984608, -30.0356483 ], [ 153.197668099999987, -30.0371981 ], [ 153.1971026, -30.0384917 ], [ 153.196687, -30.0399111 ], [ 153.196243399999986, -30.0412871 ], [ 153.1959333, -30.0428761 ], [ 153.1955782, -30.0446642 ], [ 153.195321799999988, -30.045366 ], [ 153.195166300000011, -30.0462917 ], [ 153.1949129, -30.0479273 ], [ 153.1948133, -30.0498562 ], [ 153.1947882, -30.051634 ], [ 153.1949517, -30.0534246 ], [ 153.195301, -30.0548369 ], [ 153.196016899999989, -30.0567072 ], [ 153.1965375, -30.0577281 ], [ 153.1964003, -30.0585763 ], [ 153.19687540000001, -30.0588206 ], [ 153.1974783, -30.0590428 ], [ 153.1985427, -30.0591647 ], [ 153.1989145, -30.0592623 ], [ 153.2001608, -30.0596991 ], [ 153.2007318, -30.0597976 ], [ 153.2011178, -30.0597405 ], [ 153.201450599999987, -30.0596518 ], [ 153.2016011, -30.0595872 ], [ 153.2017303, -30.0594724 ], [ 153.2017706, -30.0593595 ], [ 153.2019699, -30.0591581 ], [ 153.202078133933981, -30.0589813419198 ] ] } }, +{ "type": "Feature", "properties": { "name": "Safety Beach", "id": "relation3903790" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.201222175897442, -30.084390796418528 ], [ 153.2011764, -30.0844431 ], [ 153.2010058, -30.0845004 ], [ 153.200657400000011, -30.0846998 ], [ 153.2004935, -30.0849469 ], [ 153.200346, -30.0863511 ], [ 153.2002293, -30.0871513 ], [ 153.2001917, -30.0881497 ], [ 153.200004799999988, -30.0901787 ], [ 153.20008820000001, -30.091172 ], [ 153.2002987, -30.0927629 ], [ 153.20050470000001, -30.0938721 ], [ 153.2004334, -30.0940016 ], [ 153.2003679, -30.0940529 ], [ 153.2002673, -30.0940815 ], [ 153.2000979, -30.0942563 ], [ 153.200084928648408, -30.094265520235282 ] ] } }, +{ "type": "Feature", "properties": { "name": "Woolgoolga Beach", "id": "relation3906007" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.1987339915419, -30.09970640221594 ], [ 153.1986154, -30.100212 ], [ 153.1986992, -30.1006286 ], [ 153.1988082, -30.101765 ], [ 153.198872200000011, -30.1024483 ], [ 153.1989557, -30.1030265 ], [ 153.1991308, -30.1037572 ], [ 153.1993224, -30.1046414 ], [ 153.199522300000012, -30.1052899 ], [ 153.1997484, -30.1058491 ], [ 153.1999691, -30.1063441 ], [ 153.2001596, -30.1066915 ], [ 153.2003574, -30.1070175 ], [ 153.2006101, -30.1073791 ], [ 153.200934600000011, -30.1078507 ], [ 153.2012535, -30.1082126 ], [ 153.2014322, -30.1084037 ], [ 153.201555899999988, -30.1085408 ], [ 153.201734499999986, -30.1087447 ], [ 153.2019544, -30.1089286 ], [ 153.2020793, -30.1090119 ], [ 153.202357, -30.1091974 ], [ 153.202611600000012, -30.1093402 ], [ 153.2028649, -30.109473 ], [ 153.2030928, -30.1095335 ], [ 153.2033908, -30.1095871 ], [ 153.203675800000013, -30.1095934 ], [ 153.203852899999987, -30.1095514 ], [ 153.204026, -30.1094527 ], [ 153.204115800000011, -30.1093077 ], [ 153.2041146, -30.1091179 ], [ 153.204117489213871, -30.109091270004413 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation4819894" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.366904477573172, -27.192387908226326 ], [ 153.366977100000014, -27.1921995 ], [ 153.3670282, -27.19207 ], [ 153.3673774, -27.1914022 ], [ 153.3681685, -27.1894935 ], [ 153.36863, -27.18794 ], [ 153.369951500000013, -27.1851692 ], [ 153.3700354, -27.1850023 ], [ 153.37063, -27.18382 ], [ 153.3712, -27.18252 ], [ 153.37206, -27.18073 ], [ 153.37234, -27.18022 ], [ 153.37263, -27.17919 ], [ 153.3727753, -27.177662 ], [ 153.3729, -27.17635 ], [ 153.3729, -27.1759132 ], [ 153.3729, -27.17533 ], [ 153.3729, -27.17455 ], [ 153.3729, -27.1744825 ], [ 153.3729, -27.17378 ], [ 153.37289, -27.17301 ], [ 153.37289, -27.17275 ], [ 153.3726, -27.17172 ], [ 153.3726, -27.17147 ], [ 153.3726, -27.17095 ], [ 153.3726, -27.17069 ], [ 153.3726, -27.17045 ], [ 153.37245, -27.17031 ], [ 153.37231, -27.17018 ], [ 153.37231, -27.16992 ], [ 153.37231, -27.16941 ], [ 153.3721778, -27.1683673 ], [ 153.371769300000011, -27.1669554 ], [ 153.37143, -27.16608 ], [ 153.37114, -27.1653 ], [ 153.37085, -27.16478 ], [ 153.3706015, -27.164285 ], [ 153.3698914, -27.1635724 ], [ 153.3694652, -27.1632453 ], [ 153.3693745, -27.1629575 ], [ 153.3694889, -27.1625884 ], [ 153.369936599999988, -27.1608913 ], [ 153.3697788, -27.1591608 ], [ 153.3691, -27.15681 ], [ 153.3671986, -27.1523917 ], [ 153.366376800000012, -27.1489481 ], [ 153.3654323, -27.1463623 ], [ 153.36503, -27.14524 ], [ 153.36489, -27.14511 ], [ 153.36475, -27.14498 ], [ 153.364674400901578, -27.144779271359358 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5141614" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.085546111039633, -30.925459586757729 ], [ 153.0854189, -30.9252932 ], [ 153.0852724, -30.9251376 ], [ 153.084965399999987, -30.9251137 ], [ 153.0845678, -30.9251735 ], [ 153.084177399999987, -30.9253597 ], [ 153.082582, -30.926943 ], [ 153.0799252, -30.9298363 ], [ 153.0765654, -30.9336815 ], [ 153.0740964, -30.9365734 ], [ 153.0724142, -30.9387962 ], [ 153.0701199, -30.9420723 ], [ 153.0675688, -30.9451545 ], [ 153.0640721, -30.9488493 ], [ 153.0619786, -30.9511428 ], [ 153.0601331, -30.9533725 ], [ 153.0567464, -30.9583041 ], [ 153.054070200000012, -30.962663 ], [ 153.0524421, -30.965722 ], [ 153.05073010000001, -30.9691301 ], [ 153.0488284, -30.973259 ], [ 153.0471782, -30.9769983 ], [ 153.045744899999988, -30.980287 ], [ 153.0441839, -30.9841861 ], [ 153.0428009, -30.9876554 ], [ 153.0414403, -30.9915367 ], [ 153.0400522, -30.9960877 ], [ 153.0389059, -31.000908 ], [ 153.0380538, -31.0047009 ], [ 153.037855400000012, -31.0062349 ], [ 153.03752750000001, -31.0081426 ], [ 153.0373531, -31.0098381 ], [ 153.03710190000001, -31.0114538 ], [ 153.036990300000014, -31.0130955 ], [ 153.0368159, -31.015054 ], [ 153.0366618, -31.021123 ], [ 153.0368119, -31.0264805 ], [ 153.0370421, -31.0283284 ], [ 153.0372724, -31.0299431 ], [ 153.0374996, -31.0313605 ], [ 153.03766, -31.0321475 ], [ 153.0380677, -31.0338748 ], [ 153.0385182, -31.0356778 ], [ 153.0389724, -31.0369135 ], [ 153.039446199999986, -31.0381893 ], [ 153.039911, -31.0394811 ], [ 153.040341399999988, -31.0405785 ], [ 153.0409607, -31.041839 ], [ 153.0416189, -31.0431686 ], [ 153.042246, -31.044428 ], [ 153.042718400000012, -31.0450827 ], [ 153.043209600000012, -31.0459025 ], [ 153.0437311, -31.046547 ], [ 153.0444066, -31.0473696 ], [ 153.0454255, -31.0484929 ], [ 153.0459237, -31.0490614 ], [ 153.0467655, -31.0498386 ], [ 153.0471402, -31.050175 ], [ 153.047904499999987, -31.0508133 ], [ 153.0485717, -31.0513463 ], [ 153.0493739, -31.0518943 ], [ 153.050632, -31.052704 ], [ 153.051344699999987, -31.0531187 ], [ 153.0519686, -31.0534272 ], [ 153.0527152, -31.0538526 ], [ 153.0529781, -31.0539397 ], [ 153.053674, -31.0541857 ], [ 153.053917899999988, -31.0541838 ], [ 153.054931900000014, -31.0543446 ], [ 153.055218599999989, -31.0543388 ], [ 153.055552, -31.0542586 ], [ 153.055810799999989, -31.0542792 ], [ 153.0559638, -31.0543228 ], [ 153.056001, -31.0544209 ], [ 153.0560257, -31.0545476 ], [ 153.0560898, -31.0546913 ], [ 153.056154, -31.0548054 ], [ 153.056208199999986, -31.0548646 ], [ 153.0562989, -31.0549197 ], [ 153.056508121431307, -31.054906114192772 ] ] } }, +{ "type": "Feature", "properties": { "name": "Station Creek Beach", "id": "relation5149232" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.258890249838714, -29.950085067785043 ], [ 153.2588744, -29.9500335 ], [ 153.2587729, -29.9500315 ], [ 153.2586961, -29.9500129 ], [ 153.2587035, -29.9493908 ], [ 153.2586928, -29.9491518 ], [ 153.258656300000013, -29.9490006 ], [ 153.2586155, -29.9489209 ], [ 153.2585665, -29.9488426 ], [ 153.2584918, -29.948789 ], [ 153.2584258, -29.9487793 ], [ 153.2583416, -29.9487913 ], [ 153.2583947, -29.9488393 ], [ 153.258433700000012, -29.9488894 ], [ 153.258453300000014, -29.9489536 ], [ 153.2584354, -29.949083 ], [ 153.2583994, -29.9491986 ], [ 153.2583024, -29.949337 ], [ 153.2581936, -29.9494743 ], [ 153.257983200000012, -29.9496044 ], [ 153.2578116, -29.9497104 ], [ 153.2574501, -29.9498678 ], [ 153.2558125, -29.9503137 ], [ 153.2555515, -29.95045 ], [ 153.254812, -29.9508361 ], [ 153.254038, -29.9513897 ], [ 153.2533862, -29.9520506 ], [ 153.2533391, -29.9521015 ], [ 153.252435600000013, -29.9530764 ], [ 153.25181760000001, -29.9539344 ], [ 153.2513702, -29.9548682 ], [ 153.2508794, -29.9554631 ], [ 153.249335, -29.9572228 ], [ 153.2483029, -29.9586938 ], [ 153.2469145, -29.9611737 ], [ 153.2459608, -29.9627148 ], [ 153.24473230000001, -29.964327 ], [ 153.244072499999987, -29.9649628 ], [ 153.243463600000013, -29.96521 ], [ 153.2434121, -29.9658481 ], [ 153.2433282, -29.9659574 ], [ 153.241306, -29.9685909 ], [ 153.2371014, -29.9740345 ], [ 153.2354092, -29.9762518 ], [ 153.234825300000011, -29.9771738 ], [ 153.234019600000011, -29.9780765 ], [ 153.2333786, -29.9785595 ], [ 153.232668499999988, -29.9788651 ], [ 153.232497398190901, -29.979588302963826 ] ] } }, +{ "type": "Feature", "properties": { "name": "Boambee Beach", "id": "relation5206367" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.141135233524324, -30.312915248804966 ], [ 153.1411216, -30.3129119 ], [ 153.1410294, -30.3129149 ], [ 153.140932600000014, -30.3129618 ], [ 153.140818700000011, -30.3129276 ], [ 153.1406624, -30.3128421 ], [ 153.1404781, -30.3127642 ], [ 153.140241300000014, -30.3127529 ], [ 153.140104900000011, -30.3127564 ], [ 153.1400587, -30.3127979 ], [ 153.1395566, -30.313006 ], [ 153.1389763, -30.3133662 ], [ 153.1380737, -30.3139686 ], [ 153.137129499999986, -30.3147188 ], [ 153.1338036, -30.3172195 ], [ 153.1318617, -30.3188958 ], [ 153.1297159, -30.3209056 ], [ 153.1267762, -30.3236005 ], [ 153.1235101, -30.3270577 ], [ 153.119888300000014, -30.3312128 ], [ 153.1160796, -30.3358984 ], [ 153.1137592, -30.3389827 ], [ 153.11133430000001, -30.3426435 ], [ 153.1091734, -30.3466955 ], [ 153.107831800000014, -30.350103 ], [ 153.107121, -30.3514814 ], [ 153.1066188, -30.3529971 ], [ 153.1069611, -30.354189 ], [ 153.1070595, -30.3544999 ], [ 153.1072208, -30.3547369 ], [ 153.107407599999988, -30.3548877 ], [ 153.107773, -30.3550225 ], [ 153.107914, -30.35505 ], [ 153.1080464, -30.3552102 ], [ 153.108046608192808, -30.355210288225511 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5374363" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.586583443303653, -28.876427945741739 ], [ 153.586394500000011, -28.876348 ], [ 153.5857316, -28.8761057 ], [ 153.5854567, -28.8766041 ], [ 153.584955, -28.8771766 ], [ 153.583913599999988, -28.8780669 ], [ 153.5826615, -28.8789749 ], [ 153.581365299999987, -28.8800503 ], [ 153.580163700000014, -28.8810329 ], [ 153.578491500000013, -28.8823746 ], [ 153.5768661, -28.8838424 ], [ 153.5734093, -28.8870782 ], [ 153.5717104, -28.8886963 ], [ 153.5700579, -28.8903354 ], [ 153.5684402, -28.8919685 ], [ 153.566889, -28.8934252 ], [ 153.560685799999987, -28.8998018 ], [ 153.5531375, -28.9079126 ], [ 153.544214899999986, -28.91746 ], [ 153.5341206, -28.9287696 ], [ 153.5235193, -28.9407147 ], [ 153.5158193, -28.9495437 ], [ 153.5111694, -28.955154 ], [ 153.506022300000012, -28.9614269 ], [ 153.5001418, -28.9683825 ], [ 153.49452260000001, -28.9753543 ], [ 153.488784, -28.9827739 ], [ 153.4841585, -28.9889905 ], [ 153.4827127, -28.9909652 ], [ 153.4824677, -28.9912717 ], [ 153.48042430000001, -28.9938274 ], [ 153.4784208, -28.9967182 ], [ 153.4772896, -28.998208 ], [ 153.4764027, -28.9996233 ], [ 153.4749617, -29.0015508 ], [ 153.474009200000012, -29.0030005 ], [ 153.472993, -29.0043961 ], [ 153.4717525, -29.0063065 ], [ 153.4705573, -29.0080511 ], [ 153.4690885, -29.0101824 ], [ 153.4675125, -29.0126795 ], [ 153.465116099999989, -29.0162656 ], [ 153.4633891, -29.0191121 ], [ 153.4620069, -29.0212534 ], [ 153.4611006, -29.0229696 ], [ 153.460093199999989, -29.0248131 ], [ 153.4590722, -29.0266351 ], [ 153.457830699999988, -29.0288338 ], [ 153.4572939, -29.0299769 ], [ 153.45670530000001, -29.0311535 ], [ 153.456080500000013, -29.032421 ], [ 153.4552261, -29.0339269 ], [ 153.454596900000013, -29.035316 ], [ 153.453771499999988, -29.0366088 ], [ 153.4534735, -29.037461 ], [ 153.4534047, -29.0375985 ], [ 153.4532596, -29.0377276 ], [ 153.4530292, -29.0378612 ], [ 153.4525946, -29.0384146 ], [ 153.4524275, -29.038818 ], [ 153.452019799999988, -29.0395543 ], [ 153.4518597, -29.0400467 ], [ 153.4514941, -29.0411395 ], [ 153.450851199999988, -29.0427385 ], [ 153.450384500000013, -29.0437469 ], [ 153.4500519, -29.0444785 ], [ 153.4493484, -29.046031 ], [ 153.448866400000014, -29.0469828 ], [ 153.4483514, -29.0478879 ], [ 153.4480394, -29.0486479 ], [ 153.4477613, -29.0493604 ], [ 153.447380399999986, -29.0501952 ], [ 153.446988, -29.0509645 ], [ 153.446639299999987, -29.0515788 ], [ 153.4463228, -29.052362 ], [ 153.4460286, -29.053234 ], [ 153.445814, -29.0537404 ], [ 153.4457059, -29.0541346 ], [ 153.44538940000001, -29.054913 ], [ 153.445089, -29.0556164 ], [ 153.444639200000012, -29.0566384 ], [ 153.444312, -29.0575481 ], [ 153.44398480000001, -29.0583547 ], [ 153.4434215, -29.0595457 ], [ 153.443378599999988, -29.0599302 ], [ 153.4429701, -29.0605447 ], [ 153.4421922, -29.0624954 ], [ 153.44157, -29.0640193 ], [ 153.441001300000011, -29.0653837 ], [ 153.440299399999986, -29.0671981 ], [ 153.4398702, -29.0685297 ], [ 153.438915400000013, -29.0710381 ], [ 153.438550600000013, -29.0719383 ], [ 153.4383521, -29.0727588 ], [ 153.4380831, -29.0736967 ], [ 153.437869299999988, -29.0744467 ], [ 153.4377451, -29.0747845 ], [ 153.437364300000013, -29.0750142 ], [ 153.4370164, -29.0750702 ], [ 153.436790300000013, -29.0751783 ], [ 153.436565800000011, -29.0754594 ], [ 153.436437, -29.0758766 ], [ 153.4362975, -29.0763033 ], [ 153.4360714, -29.0768661 ], [ 153.43647, -29.0774425 ], [ 153.436646200000013, -29.0776629 ], [ 153.436688299999986, -29.0781038 ], [ 153.4364263, -29.0791491 ], [ 153.4355573, -29.0819338 ], [ 153.4348599, -29.0844466 ], [ 153.4343556, -29.0866078 ], [ 153.4340391, -29.0880422 ], [ 153.433561700000013, -29.0904564 ], [ 153.4330521, -29.0929597 ], [ 153.432826799999987, -29.0953269 ], [ 153.4326873, -29.0982987 ], [ 153.4325953, -29.1009941 ], [ 153.4326927, -29.1044764 ], [ 153.432842099999988, -29.1056672 ], [ 153.4329019, -29.1064356 ], [ 153.4329976, -29.1073264 ], [ 153.4331594, -29.108301 ], [ 153.433394600000014, -29.1091918 ], [ 153.433797700000014, -29.1104382 ], [ 153.4341349, -29.1112493 ], [ 153.4343495, -29.1117648 ], [ 153.4345219, -29.1122942 ], [ 153.434715, -29.1125941 ], [ 153.4350905, -29.1129925 ], [ 153.4354768, -29.1133534 ], [ 153.435804, -29.1136533 ], [ 153.4358952, -29.1136299 ], [ 153.435964899999988, -29.1135596 ], [ 153.436142, -29.1133674 ], [ 153.43623740000001, -29.1132638 ], [ 153.436383851953053, -29.113120050112506 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5403455" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.579286684885346, -28.36323798354287 ], [ 153.5790917, -28.3631781 ], [ 153.5788905, -28.3630707 ], [ 153.5787949, -28.3629476 ], [ 153.57869740000001, -28.3629029 ], [ 153.578579100000013, -28.3629151 ], [ 153.578203300000013, -28.3631969 ], [ 153.5779458, -28.3634663 ], [ 153.577835599999986, -28.3636294 ], [ 153.5772475, -28.3644996 ], [ 153.577154900000011, -28.364691 ], [ 153.5768926, -28.3652329 ], [ 153.57652, -28.3660027 ], [ 153.5761113, -28.3668472 ], [ 153.5759692, -28.3671408 ], [ 153.5754302, -28.3683427 ], [ 153.575252299999988, -28.3687392 ], [ 153.5750232, -28.3693806 ], [ 153.575004299999989, -28.3694334 ], [ 153.5749859, -28.3694849 ], [ 153.5747164, -28.3702395 ], [ 153.5740232, -28.3721615 ], [ 153.5733708, -28.3739707 ], [ 153.57306, -28.3748323 ], [ 153.5725421, -28.3765318 ], [ 153.5721552, -28.3778012 ], [ 153.5718283, -28.3790105 ], [ 153.5715272, -28.3801241 ], [ 153.570819, -28.3827437 ], [ 153.5705026, -28.3838775 ], [ 153.5696776, -28.3868338 ], [ 153.5692764, -28.3874032 ], [ 153.569362399999989, -28.3874586 ], [ 153.5697333, -28.3874828 ], [ 153.5698643, -28.3875008 ], [ 153.5699043, -28.3875398 ], [ 153.5698865, -28.3875988 ], [ 153.569891626721898, -28.387611709573989 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pebbly Beach", "id": "relation5447649" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.573188720122431, -33.284454667098963 ], [ 151.5729743, -33.2844685 ], [ 151.572116599999987, -33.2851174 ], [ 151.5714207, -33.2858799 ], [ 151.57085, -33.2865419 ], [ 151.5703435, -33.2873878 ], [ 151.570154300000013, -33.2882456 ], [ 151.5702152, -33.2885493 ], [ 151.570417148584198, -33.288622067249065 ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdie Beach", "id": "relation5610370" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.613495420023469, -33.20159279448486 ], [ 151.6132933, -33.2015208 ], [ 151.612946, -33.2015733 ], [ 151.6124164, -33.2016276 ], [ 151.611921700000011, -33.2018065 ], [ 151.6112027, -33.2022871 ], [ 151.6105203, -33.202881 ], [ 151.6093316, -33.203328 ], [ 151.6084491, -33.204212 ], [ 151.6071685, -33.2051445 ], [ 151.6059223, -33.2060783 ], [ 151.604390200000012, -33.2071844 ], [ 151.6027003, -33.2083612 ], [ 151.6014365, -33.2092817 ], [ 151.601044539369298, -33.209610005351287 ] ] } }, +{ "type": "Feature", "properties": { "name": "Frazer Beach", "id": "relation5610372" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.62468289149146, -33.187016152628694 ], [ 151.6244921, -33.1869183 ], [ 151.6242607, -33.186909 ], [ 151.624107900000013, -33.1869425 ], [ 151.623955200000012, -33.1870109 ], [ 151.623804, -33.1870853 ], [ 151.6236496, -33.1871775 ], [ 151.6233349, -33.187446 ], [ 151.623057100000011, -33.1877238 ], [ 151.6226498, -33.1881496 ], [ 151.6223628, -33.1885755 ], [ 151.622210599999988, -33.188843 ], [ 151.6220573, -33.1891125 ], [ 151.6217795, -33.190029 ], [ 151.62187384060428, -33.190221711722657 ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdie Beach", "id": "relation5610374" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.601454160920383, -33.209268836511143 ], [ 151.6014365, -33.2092817 ], [ 151.599927900000012, -33.2105453 ], [ 151.5989827, -33.2113008 ], [ 151.5978491, -33.2122375 ], [ 151.596791200000013, -33.2131181 ], [ 151.5960325, -33.2139163 ], [ 151.5951911, -33.2148692 ], [ 151.5945099, -33.2156173 ], [ 151.5936738, -33.2162873 ], [ 151.5932302, -33.2169161 ], [ 151.5918413, -33.2179749 ], [ 151.5914611, -33.2183269 ], [ 151.59094540000001, -33.2190058 ], [ 151.5900283, -33.2199571 ], [ 151.588565499999987, -33.2212043 ], [ 151.5867577, -33.2224884 ], [ 151.5856681, -33.2233483 ], [ 151.5844553, -33.2242039 ], [ 151.583957199999986, -33.2244807 ], [ 151.5831387, -33.2251507 ], [ 151.5817516, -33.2262595 ], [ 151.5804948, -33.2272858 ], [ 151.5794773, -33.2281854 ], [ 151.578558500000014, -33.2290498 ], [ 151.577632599999987, -33.2299332 ], [ 151.576504300000011, -33.2310787 ], [ 151.5756083, -33.2319798 ], [ 151.574840099999989, -33.2328436 ], [ 151.5735424, -33.2342757 ], [ 151.572535499999987, -33.2354212 ], [ 151.5720954, -33.2359807 ], [ 151.5716026, -33.2367698 ], [ 151.5706415, -33.2380536 ], [ 151.569986699999987, -33.2389458 ], [ 151.568846, -33.2405211 ], [ 151.5684341, -33.241428 ], [ 151.5677863, -33.2423467 ], [ 151.5671491, -33.2434508 ], [ 151.566406300000011, -33.2448141 ], [ 151.56588880000001, -33.2455531 ], [ 151.5656952, -33.2460065 ], [ 151.5654241, -33.2467014 ], [ 151.5649488, -33.247723 ], [ 151.5644665, -33.2487123 ], [ 151.5642694, -33.249781 ], [ 151.563994799999989, -33.2504847 ], [ 151.5638645, -33.2515063 ], [ 151.563498399999986, -33.2520745 ], [ 151.563339899999988, -33.2527958 ], [ 151.5632731, -33.2536289 ], [ 151.563185, -33.2549096 ], [ 151.5632449, -33.2556662 ], [ 151.5635934, -33.2570351 ], [ 151.563857500000012, -33.2576945 ], [ 151.5638715, -33.2581126 ], [ 151.5632731, -33.2592371 ], [ 151.5622994, -33.2604397 ], [ 151.5620056, -33.2614972 ], [ 151.5620654, -33.2633081 ], [ 151.562304399999988, -33.2657892 ], [ 151.5627375, -33.267113 ], [ 151.56290631277065, -33.267397474589735 ] ] } }, +{ "type": "Feature", "properties": { "name": "Moonee Beach", "id": "relation5614833" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.632889516189749, -33.166546619306935 ], [ 151.6328885, -33.1665371 ], [ 151.6328581, -33.1664494 ], [ 151.6327686, -33.1663589 ], [ 151.6326517, -33.1662074 ], [ 151.632404900000012, -33.1660368 ], [ 151.6321635, -33.165929 ], [ 151.6320455, -33.1661356 ], [ 151.631940899999989, -33.1662411 ], [ 151.631696799999986, -33.1663781 ], [ 151.631460800000013, -33.1665846 ], [ 151.6311765, -33.167092 ], [ 151.630986, -33.1677768 ], [ 151.6309431, -33.1686524 ], [ 151.6310531, -33.1694091 ], [ 151.6311282, -33.17004 ], [ 151.6313728, -33.1706464 ], [ 151.631522499999988, -33.1708662 ], [ 151.6316646, -33.1711872 ], [ 151.631729, -33.1714162 ], [ 151.631721, -33.1716901 ], [ 151.631825600000013, -33.171872 ], [ 151.63195970000001, -33.1720448 ], [ 151.6322011, -33.1722559 ], [ 151.632399600000014, -33.1723771 ], [ 151.632657, -33.1724871 ], [ 151.632844799999987, -33.1725612 ], [ 151.6329548, -33.172669 ], [ 151.632992300000012, -33.1727857 ], [ 151.6329896, -33.1729294 ], [ 151.6328743, -33.1731292 ], [ 151.6327536, -33.1732774 ], [ 151.6327482, -33.1734548 ], [ 151.6329735, -33.1737533 ], [ 151.633238299999988, -33.174111 ], [ 151.6334527, -33.1743242 ], [ 151.633580952906442, -33.17414903912443 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5614834" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.644749796392347, -33.128581249206313 ], [ 151.64454090000001, -33.1285325 ], [ 151.6440691, -33.1288108 ], [ 151.6438755, -33.1291737 ], [ 151.6440328, -33.1295004 ], [ 151.6437061, -33.1295972 ], [ 151.6433916, -33.1297181 ], [ 151.6431012, -33.1299238 ], [ 151.642883399999988, -33.1302626 ], [ 151.64270590000001, -33.1308912 ], [ 151.642913693361692, -33.130944794043977 ] ] } }, +{ "type": "Feature", "properties": { "name": "Catherine Hill Bay Beach", "id": "relation5614835" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.637320889823968, -33.146002993468457 ], [ 151.6373202, -33.1460013 ], [ 151.6374821, -33.1457962 ], [ 151.6370504, -33.1457746 ], [ 151.636543100000011, -33.1457746 ], [ 151.6360359, -33.1459041 ], [ 151.6350429, -33.1463358 ], [ 151.634363, -33.1468971 ], [ 151.6338125, -33.1474259 ], [ 151.6332189, -33.1482786 ], [ 151.6325713, -33.1491636 ], [ 151.6320101, -33.1502213 ], [ 151.631405699999988, -33.1510847 ], [ 151.6308229, -33.1521532 ], [ 151.6304235, -33.1529195 ], [ 151.6301105, -33.1535779 ], [ 151.6298515, -33.1544197 ], [ 151.6296357, -33.1553048 ], [ 151.6295385, -33.1561034 ], [ 151.6294953, -33.1568805 ], [ 151.6295493, -33.1574741 ], [ 151.6297328, -33.1579814 ], [ 151.6299918, -33.1587045 ], [ 151.6301321, -33.1588556 ], [ 151.630373, -33.1590436 ], [ 151.630492384147459, -33.159221627940916 ] ] } }, +{ "type": "Feature", "properties": { "name": "Avalon Beach", "id": "relation5622266" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.335715824383271, -33.633489405228154 ], [ 151.335500200000013, -33.6334855 ], [ 151.335020899999989, -33.6334444 ], [ 151.3344006, -33.6336231 ], [ 151.33358960000001, -33.6343473 ], [ 151.332682799999986, -33.6353535 ], [ 151.332182, -33.6360427 ], [ 151.3319687, -33.6367818 ], [ 151.3319826, -33.6372164 ], [ 151.3319608, -33.6373303 ], [ 151.332013, -33.6373971 ], [ 151.3320448, -33.6373855 ], [ 151.332075110971374, -33.637411373384992 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5622498" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.64754180388573, -33.11818303098638 ], [ 151.6475317, -33.1181892 ], [ 151.6473329, -33.1181285 ], [ 151.6472791, -33.1185051 ], [ 151.647362500000014, -33.1189237 ], [ 151.6475135, -33.1193525 ], [ 151.6477562, -33.1197978 ], [ 151.648144800000011, -33.1202249 ], [ 151.6485147, -33.1204591 ], [ 151.648756600000013, -33.1205222 ], [ 151.649173, -33.1204571 ], [ 151.650209600000011, -33.1203276 ], [ 151.6510984, -33.1202207 ], [ 151.6513525, -33.1199788 ], [ 151.6514855, -33.1198336 ], [ 151.651376699999986, -33.1196763 ], [ 151.6513041, -33.1195311 ], [ 151.6514492, -33.1194585 ], [ 151.6516307, -33.119519 ], [ 151.6518364, -33.1197731 ], [ 151.652151, -33.1198336 ], [ 151.6524292, -33.1202328 ], [ 151.652622799999989, -33.1204264 ], [ 151.652671199999986, -33.1206442 ], [ 151.652346599999987, -33.1206795 ], [ 151.652098, -33.1206526 ], [ 151.6517542, -33.1205623 ], [ 151.6512444, -33.1204608 ], [ 151.650178899999986, -33.1206321 ], [ 151.649558899999988, -33.1207 ], [ 151.649065799999988, -33.1207168 ], [ 151.6488843, -33.1208136 ], [ 151.6486545, -33.1208741 ], [ 151.648315700000012, -33.1207773 ], [ 151.647671800000012, -33.1211006 ], [ 151.64751720000001, -33.1214306 ], [ 151.6472389, -33.1216726 ], [ 151.64713, -33.1220234 ], [ 151.646839699999987, -33.12258 ], [ 151.6466188, -33.1232636 ], [ 151.646716165154857, -33.123454727447502 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5622499" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.662921548868979, -33.092066105072469 ], [ 151.6627894, -33.092235 ], [ 151.6625836, -33.0926595 ], [ 151.662300499999986, -33.0928268 ], [ 151.6622491, -33.0930069 ], [ 151.6623649, -33.0932642 ], [ 151.662519300000014, -33.0934443 ], [ 151.662313399999988, -33.0934829 ], [ 151.6620561, -33.0933671 ], [ 151.662004599999989, -33.093187 ], [ 151.6617216, -33.0931227 ], [ 151.6614128, -33.0931613 ], [ 151.661104, -33.0933929 ], [ 151.660872399999988, -33.0939718 ], [ 151.6607438, -33.0944993 ], [ 151.660756600000013, -33.0949625 ], [ 151.660872399999988, -33.095297 ], [ 151.6609368, -33.0955801 ], [ 151.6607438, -33.0957859 ], [ 151.660563700000012, -33.0960947 ], [ 151.6602433, -33.0963285 ], [ 151.6598818, -33.0964292 ], [ 151.6594572, -33.0964035 ], [ 151.6590583, -33.0965322 ], [ 151.6587624, -33.0966608 ], [ 151.6584536, -33.0970597 ], [ 151.6582349, -33.0977801 ], [ 151.658080500000011, -33.0983977 ], [ 151.657887499999987, -33.0987194 ], [ 151.6575273, -33.0989638 ], [ 151.656961200000012, -33.0992597 ], [ 151.6562922, -33.0993755 ], [ 151.6558933, -33.09962 ], [ 151.65581610000001, -33.0998258 ], [ 151.6556746, -33.0998387 ], [ 151.655417300000011, -33.099813 ], [ 151.655121400000013, -33.0998902 ], [ 151.654092100000014, -33.1005849 ], [ 151.6529213, -33.1015884 ], [ 151.651943499999987, -33.1026949 ], [ 151.6513774, -33.1036985 ], [ 151.650798400000014, -33.1047406 ], [ 151.6502035, -33.1064025 ], [ 151.6498592, -33.107391 ], [ 151.6494604, -33.1081758 ], [ 151.6488171, -33.1089477 ], [ 151.6478136, -33.1099255 ], [ 151.647414700000013, -33.1104016 ], [ 151.6470574, -33.1109411 ], [ 151.6466824, -33.1113524 ], [ 151.6465493, -33.1114976 ], [ 151.646663705185802, -33.111678741544175 ] ] } }, +{ "type": "Feature", "properties": { "name": "Stockton Beach", "id": "relation5632945" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.077987764909693, -32.787629022785559 ], [ 152.077886, -32.787441 ], [ 152.077921, -32.786979 ], [ 152.077423, -32.786551 ], [ 152.077395, -32.786332 ], [ 152.077838, -32.786168 ], [ 152.07787, -32.786027 ], [ 152.07769, -32.785794 ], [ 152.077095, -32.785841 ], [ 152.077037, -32.785532 ], [ 152.076036, -32.785216 ], [ 152.075567, -32.784592 ], [ 152.07431, -32.783657 ], [ 152.0735554, -32.783477 ], [ 152.0730136, -32.7834772 ], [ 152.0724942, -32.7835334 ], [ 152.071843699999988, -32.7835231 ], [ 152.0710358, -32.7834656 ], [ 152.0707873, -32.7834703 ], [ 152.069988, -32.7835982 ], [ 152.0690074, -32.7837131 ], [ 152.067016099999989, -32.783742 ], [ 152.065311, -32.783852 ], [ 152.063016, -32.784365 ], [ 152.062455, -32.784364 ], [ 152.062013, -32.784249 ], [ 152.061725, -32.784227 ], [ 152.057517, -32.784908 ], [ 152.05455, -32.785298 ], [ 152.053344, -32.785267 ], [ 152.053106, -32.78531 ], [ 152.049352, -32.786482 ], [ 152.041124, -32.788016 ], [ 152.039228, -32.788341 ], [ 152.033701, -32.789556 ], [ 152.031079, -32.790045 ], [ 152.023858, -32.791518 ], [ 152.021073, -32.792278 ], [ 152.017522, -32.793031 ], [ 152.012313, -32.794519 ], [ 152.008366, -32.795546 ], [ 152.005085, -32.796565 ], [ 152.001966, -32.797494 ], [ 152.000152, -32.798034 ], [ 151.996886, -32.798826 ], [ 151.983163, -32.802997 ], [ 151.9759, -32.80502 ], [ 151.974154, -32.80567 ], [ 151.96449, -32.808779 ], [ 151.961937, -32.809686 ], [ 151.959356, -32.810455 ], [ 151.95747, -32.811091 ], [ 151.955989, -32.811736 ], [ 151.953213, -32.81237 ], [ 151.952571, -32.812667 ], [ 151.947847, -32.814519 ], [ 151.945964, -32.814918 ], [ 151.938994, -32.817286 ], [ 151.931766, -32.81995 ], [ 151.926507, -32.821783 ], [ 151.923849, -32.822928 ], [ 151.922677, -32.823504 ], [ 151.922021, -32.823642 ], [ 151.9160479, -32.8258022 ], [ 151.913331199999988, -32.8268138 ], [ 151.910455899999988, -32.8278656 ], [ 151.908368, -32.828758 ], [ 151.9024446, -32.8310212 ], [ 151.9006633, -32.8318201 ], [ 151.8970583, -32.8332586 ], [ 151.8925595, -32.8351391 ], [ 151.890933, -32.835842 ], [ 151.889906, -32.836275 ], [ 151.8877042, -32.8372235 ], [ 151.886706, -32.837727 ], [ 151.883911, -32.8389764 ], [ 151.878428, -32.841403 ], [ 151.87726, -32.842025 ], [ 151.874965, -32.843053 ], [ 151.872714699999989, -32.8440437 ], [ 151.872006, -32.844481 ], [ 151.8642926, -32.8478745 ], [ 151.8632948, -32.8484334 ], [ 151.8602586, -32.8497403 ], [ 151.8573618, -32.8510472 ], [ 151.855838299999988, -32.8517502 ], [ 151.8531668, -32.8531653 ], [ 151.845377899999988, -32.8576438 ], [ 151.844259, -32.858261 ], [ 151.843915, -32.858418 ], [ 151.843521, -32.858511 ], [ 151.841257, -32.859913 ], [ 151.839764, -32.8607305 ], [ 151.838101, -32.861641 ], [ 151.835857, -32.862562 ], [ 151.835346, -32.862835 ], [ 151.833058, -32.864162 ], [ 151.829632, -32.866228 ], [ 151.828252, -32.867017 ], [ 151.827024, -32.867776 ], [ 151.826168, -32.868217 ], [ 151.824602, -32.869102 ], [ 151.823847, -32.86948 ], [ 151.8232233, -32.8699148 ], [ 151.822345, -32.870527 ], [ 151.819287, -32.872489 ], [ 151.813785, -32.875899 ], [ 151.811523, -32.877319 ], [ 151.810123, -32.87821 ], [ 151.808536, -32.879411 ], [ 151.806949, -32.88077 ], [ 151.806368, -32.881183 ], [ 151.805788, -32.881479 ], [ 151.804572, -32.882418 ], [ 151.801417, -32.88492 ], [ 151.799484, -32.886746 ], [ 151.798559, -32.887559 ], [ 151.798094, -32.888108 ], [ 151.7936073, -32.8934338 ], [ 151.7917927, -32.8962919 ], [ 151.7906439, -32.8983064 ], [ 151.7901216, -32.8994143 ], [ 151.78959230000001, -32.9004818 ], [ 151.7894206, -32.9011454 ], [ 151.7887264, -32.9033555 ], [ 151.7884319, -32.9045445 ], [ 151.7881835, -32.9063732 ], [ 151.788137299999988, -32.9075783 ], [ 151.788156, -32.9087563 ], [ 151.7883148, -32.9093388 ], [ 151.7884721, -32.9103083 ], [ 151.7888501, -32.9112661 ], [ 151.7894326, -32.9124123 ], [ 151.790118, -32.913548 ], [ 151.7909737, -32.9148369 ], [ 151.7911938, -32.9151701 ], [ 151.7914237, -32.9154321 ], [ 151.791635577283358, -32.915459049508314 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Congwong Beach", "id": "relation5922776" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.238243022123243, -33.992102541249672 ], [ 151.2383826, -33.9919371 ], [ 151.238448299999988, -33.9918619 ], [ 151.2384022, -33.9916899 ], [ 151.2382901, -33.9914419 ], [ 151.238247199999989, -33.991329 ], [ 151.2381816, -33.9911779 ], [ 151.238099799999986, -33.9910996 ], [ 151.237990599999989, -33.9909826 ], [ 151.237872, -33.9909198 ], [ 151.237667373634423, -33.990848643578055 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5922777" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.245228708716013, -33.997385263250017 ], [ 151.2451824, -33.9973589 ], [ 151.2451002, -33.9973301 ], [ 151.2450411, -33.9973106 ], [ 151.244959, -33.9973118 ], [ 151.244877699999989, -33.9973172 ], [ 151.244775800000014, -33.9973388 ], [ 151.2446579, -33.9973983 ], [ 151.2445931, -33.9974229 ], [ 151.244503, -33.9974655 ], [ 151.2444197, -33.9975232 ], [ 151.244317, -33.997613 ], [ 151.244169699999986, -33.9977386 ], [ 151.2441666, -33.9979027 ], [ 151.244137727340217, -33.997952712564832 ] ] } }, +{ "type": "Feature", "properties": { "name": "Congwong Beach", "id": "relation5926010" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.235837892773873, -33.989638082620722 ], [ 151.235777500000012, -33.9895443 ], [ 151.2358318, -33.9894215 ], [ 151.2354276, -33.9892156 ], [ 151.2350266, -33.9890771 ], [ 151.2347016, -33.9890156 ], [ 151.2344453, -33.9890445 ], [ 151.2342325, -33.9890514 ], [ 151.234080047504051, -33.989205078443383 ] ] } }, +{ "type": "Feature", "properties": { "name": "Frenchmans Bay Beach", "id": "relation5926011" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.23112454801219, -33.987747695986499 ], [ 151.231287, -33.9876047 ], [ 151.2313657, -33.9875068 ], [ 151.23148, -33.9872898 ], [ 151.2315782, -33.9868899 ], [ 151.2315868, -33.9863295 ], [ 151.23152, -33.9858452 ], [ 151.2313624, -33.9853099 ], [ 151.2312528, -33.9850528 ], [ 151.231101700000011, -33.9847415 ], [ 151.2309423, -33.9845323 ], [ 151.23084, -33.984463 ], [ 151.230710635394189, -33.984636501639592 ] ] } }, +{ "type": "Feature", "properties": { "name": "Yarra Bay Beach", "id": "relation5926014" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.228379547942126, -33.980127378401718 ], [ 151.2284056, -33.980161 ], [ 151.2285221, -33.9802905 ], [ 151.22862330000001, -33.9802976 ], [ 151.2288107, -33.9802011 ], [ 151.228997600000014, -33.9798973 ], [ 151.229084, -33.9796727 ], [ 151.2290554, -33.979565 ], [ 151.2290481, -33.9791322 ], [ 151.22895650000001, -33.9788476 ], [ 151.228844400000014, -33.9786115 ], [ 151.228667300000012, -33.9783675 ], [ 151.2285033, -33.9782855 ], [ 151.2283218, -33.9780835 ], [ 151.2279495, -33.9777446 ], [ 151.22713490000001, -33.977247 ], [ 151.2266739, -33.9769439 ], [ 151.2262421, -33.9767254 ], [ 151.2257778, -33.9765674 ], [ 151.225506200000012, -33.9764968 ], [ 151.224578, -33.9763975 ], [ 151.2244727, -33.9763837 ], [ 151.2244358, -33.9764218 ], [ 151.224388, -33.976437 ], [ 151.224340899999987, -33.9764489 ], [ 151.224289663301704, -33.976540646649234 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Bay Beach", "id": "relation5926228" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.251283468083727, -33.979483879438106 ], [ 151.2512844, -33.9795235 ], [ 151.2512527, -33.9796983 ], [ 151.251336, -33.9799247 ], [ 151.251493, -33.9801517 ], [ 151.251655699999986, -33.9802762 ], [ 151.2517954, -33.9803351 ], [ 151.251959199999988, -33.9803788 ], [ 151.2521, -33.9803937 ], [ 151.2521663, -33.9803858 ], [ 151.2522414, -33.9803541 ], [ 151.2523062, -33.9803375 ], [ 151.252344099999988, -33.9803021 ], [ 151.2523765, -33.9801401 ], [ 151.252413784215378, -33.980149626253827 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bennetts Beach", "id": "relation6158652" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.268338581254682, -32.601961161541297 ], [ 152.268262600000014, -32.6017619 ], [ 152.2674773, -32.6014716 ], [ 152.2663886, -32.6013772 ], [ 152.2653085, -32.6014796 ], [ 152.263646099999988, -32.6018659 ], [ 152.260547, -32.6028025 ], [ 152.255282, -32.6045408 ], [ 152.2505102, -32.6062855 ], [ 152.2436444, -32.6090526 ], [ 152.238948599999986, -32.6111859 ], [ 152.234334, -32.6135922 ], [ 152.2298144, -32.6162098 ], [ 152.2254977, -32.619098 ], [ 152.221876900000012, -32.6217671 ], [ 152.2185409, -32.6242098 ], [ 152.215612599999986, -32.6265739 ], [ 152.212820099999988, -32.62902 ], [ 152.2068578, -32.6348725 ], [ 152.20446050000001, -32.6375883 ], [ 152.2019258, -32.6403221 ], [ 152.2008721, -32.641613 ], [ 152.199817599999989, -32.6428076 ], [ 152.1977321, -32.6454312 ], [ 152.1957257, -32.6481825 ], [ 152.1951143, -32.6490593 ], [ 152.1944919, -32.6500068 ], [ 152.1938016, -32.6511502 ], [ 152.193232599999988, -32.6521785 ], [ 152.1925043, -32.6535455 ], [ 152.1910401, -32.656573 ], [ 152.1896897, -32.6596005 ], [ 152.188915900000012, -32.6616443 ], [ 152.1884116, -32.6632345 ], [ 152.1881635, -32.6639479 ], [ 152.1879648, -32.6646298 ], [ 152.1873656, -32.6666111 ], [ 152.1870592, -32.667686 ], [ 152.1867565, -32.669172 ], [ 152.1866732, -32.6700078 ], [ 152.1866546, -32.6701946 ], [ 152.1866011, -32.6708829 ], [ 152.186419, -32.672012 ], [ 152.186204800000013, -32.6736389 ], [ 152.1860384, -32.6749903 ], [ 152.1859172, -32.6769241 ], [ 152.1859102, -32.6785906 ], [ 152.1858913, -32.6802388 ], [ 152.185942899999986, -32.6811679 ], [ 152.1862064, -32.6832193 ], [ 152.186485800000014, -32.6847009 ], [ 152.1866279, -32.6853165 ], [ 152.1870336, -32.6868893 ], [ 152.1874204, -32.6880559 ], [ 152.1882263, -32.6896203 ], [ 152.1889677, -32.690814 ], [ 152.1897897, -32.6920529 ], [ 152.190262499999989, -32.692713 ], [ 152.1908965, -32.6935133 ], [ 152.191519699999986, -32.694083 ], [ 152.1920196, -32.6944491 ], [ 152.192591599999986, -32.6944143 ], [ 152.192785150968064, -32.694324827817603 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation6158653" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.187586701914597, -32.692326834236148 ], [ 152.1874005, -32.692186 ], [ 152.1870658, -32.6919148 ], [ 152.1865876, -32.6917118 ], [ 152.185941500000013, -32.6912115 ], [ 152.184615900000011, -32.6908505 ], [ 152.184751299999988, -32.6903174 ], [ 152.1846534, -32.6892786 ], [ 152.1844596, -32.6889071 ], [ 152.1849135, -32.689177 ], [ 152.185147199999989, -32.6891041 ], [ 152.1849662, -32.6886187 ], [ 152.1846711, -32.6881131 ], [ 152.1842727, -32.6878066 ], [ 152.18400650000001, -32.6871468 ], [ 152.1837181, -32.6864462 ], [ 152.18338270000001, -32.685592 ], [ 152.1830795, -32.6850408 ], [ 152.1826158, -32.6843151 ], [ 152.18231320000001, -32.6839368 ], [ 152.1813799, -32.6829157 ], [ 152.1801231, -32.6816377 ], [ 152.178861, -32.6806106 ], [ 152.1777127, -32.6798146 ], [ 152.1764672, -32.6792195 ], [ 152.1755061, -32.678899 ], [ 152.174557600000014, -32.6786702 ], [ 152.1738071, -32.6784156 ], [ 152.172962, -32.6782047 ], [ 152.172391, -32.6782433 ], [ 152.1711326, -32.6782667 ], [ 152.1697734, -32.678308 ], [ 152.168983700000013, -32.6784048 ], [ 152.168072200000012, -32.6785712 ], [ 152.1667948, -32.678883 ], [ 152.1658612, -32.6792151 ], [ 152.165015899999986, -32.6794918 ], [ 152.1641632, -32.6798952 ], [ 152.1628633, -32.6807655 ], [ 152.1616411, -32.6808621 ], [ 152.1609702, -32.6808621 ], [ 152.1605098, -32.6810174 ], [ 152.1598573, -32.681414 ], [ 152.159151, -32.6818872 ], [ 152.1586044, -32.6821676 ], [ 152.1580712, -32.6827786 ], [ 152.157877, -32.682235 ], [ 152.157457599999987, -32.6819205 ], [ 152.1567258, -32.6816763 ], [ 152.1564055, -32.6813314 ], [ 152.156151099999988, -32.681171 ], [ 152.156071200000014, -32.6808376 ], [ 152.155973100000011, -32.6805938 ], [ 152.1557712, -32.6803808 ], [ 152.1555335, -32.6802774 ], [ 152.1547766, -32.6801215 ], [ 152.1542689, -32.6797091 ], [ 152.1539416, -32.679326 ], [ 152.153725799999989, -32.6789339 ], [ 152.153620499999988, -32.6787636 ], [ 152.15335730000001, -32.6786003 ], [ 152.1531258, -32.6785249 ], [ 152.152831600000013, -32.6785392 ], [ 152.152305, -32.6786374 ], [ 152.1515387, -32.6788466 ], [ 152.1510692, -32.678766 ], [ 152.1499853, -32.6787454 ], [ 152.1484237, -32.6787879 ], [ 152.147828, -32.678936 ], [ 152.146886200000012, -32.6793237 ], [ 152.1454947, -32.6797863 ], [ 152.1452071, -32.6801821 ], [ 152.1444104, -32.6803228 ], [ 152.1440287, -32.6805686 ], [ 152.1432691, -32.6807698 ], [ 152.142437300000012, -32.6804731 ], [ 152.1431555, -32.6800368 ], [ 152.1443558, -32.6792419 ], [ 152.1453175, -32.678556 ], [ 152.145907, -32.6780619 ], [ 152.146243, -32.677632 ], [ 152.146269100000012, -32.6774174 ], [ 152.146951699999988, -32.6773519 ], [ 152.147344371291609, -32.67709693665963 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation6158654" }, "geometry": { "type": "LineString", "coordinates": [ [ 152.189694032171587, -32.695375794748827 ], [ 152.1896409, -32.6951693 ], [ 152.1896194, -32.6948803 ], [ 152.1897213, -32.6947088 ], [ 152.1897166, -32.694589 ], [ 152.189655, -32.694394 ], [ 152.1892924, -32.693911 ], [ 152.1887466, -32.6936314 ], [ 152.1881167, -32.6929569 ], [ 152.1876878, -32.6924033 ], [ 152.1874005, -32.692186 ], [ 152.187234699265957, -32.692051655335916 ] ] } }, +{ "type": "Feature", "properties": { "name": "Towra Spit Island", "id": "relation7071528" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.1462315, -34.0077056 ], [ 151.1477016, -34.0075157 ], [ 151.147957, -34.0075725 ], [ 151.1489137, -34.0078367 ], [ 151.1496281, -34.0083033 ], [ 151.1497005, -34.0084703 ], [ 151.14964470000001, -34.0087958 ], [ 151.1494582, -34.0088305 ], [ 151.1493441, -34.0087377 ], [ 151.1489233, -34.0081822 ], [ 151.148460300000011, -34.0079564 ], [ 151.1480915, -34.0077543 ], [ 151.1474007, -34.0077788 ], [ 151.1470181, -34.0079855 ], [ 151.1464775, -34.0081923 ], [ 151.146357200000011, -34.0083098 ], [ 151.146375299999988, -34.0085839 ], [ 151.146206299999989, -34.0086276 ], [ 151.145743399999986, -34.008574 ], [ 151.145541900000012, -34.0085272 ], [ 151.1454699, -34.0083743 ], [ 151.14564630000001, -34.0079204 ], [ 151.1462315, -34.0077056 ] ] } }, +{ "type": "Feature", "properties": { "name": "Jetty Beach", "id": "relation7477302" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.142955616363963, -30.303213007362892 ], [ 153.1427845, -30.3031482 ], [ 153.1427632, -30.3031343 ], [ 153.142699599999986, -30.3031299 ], [ 153.1423507, -30.3034872 ], [ 153.14187720000001, -30.3039358 ], [ 153.1411909, -30.3047141 ], [ 153.14074, -30.3055294 ], [ 153.140461, -30.3065298 ], [ 153.14026770000001, -30.3079373 ], [ 153.1403536, -30.309234 ], [ 153.1407165, -30.310108 ], [ 153.140919138125611, -30.310155042039568 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation7491176" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.566588698194295, -33.276791083998354 ], [ 151.5665722, -33.2770854 ], [ 151.566826099999986, -33.2779886 ], [ 151.5672169, -33.2785921 ], [ 151.5677521, -33.2788377 ], [ 151.56842180000001, -33.2789896 ], [ 151.5687653, -33.2789543 ], [ 151.569255700000014, -33.2789959 ], [ 151.5693786, -33.2790336 ], [ 151.569564500000013, -33.2791373 ], [ 151.569629099999986, -33.2791103 ], [ 151.5698688, -33.2790617 ], [ 151.57014190000001, -33.2790063 ], [ 151.5706597, -33.2792331 ], [ 151.5714118, -33.2792359 ], [ 151.5718106, -33.2791266 ], [ 151.5720906, -33.2791097 ], [ 151.5723802, -33.2791838 ], [ 151.572521, -33.2793461 ], [ 151.573332, -33.2803012 ], [ 151.5739704, -33.2805901 ], [ 151.5747785, -33.2807136 ], [ 151.5756742, -33.2804359 ], [ 151.575454013521579, -33.280279166621739 ] ] } }, +{ "type": "Feature", "properties": { "name": "Soldiers Beach", "id": "relation7491177" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.568684716806189, -33.289777810520988 ], [ 151.5686904, -33.2897449 ], [ 151.5686689, -33.2896799 ], [ 151.5687232, -33.2896138 ], [ 151.568729100000013, -33.2895666 ], [ 151.568091399999986, -33.289492 ], [ 151.566848599999986, -33.2899011 ], [ 151.5651623, -33.2907133 ], [ 151.563972400000011, -33.2916432 ], [ 151.5631521, -33.2925113 ], [ 151.5625747, -33.2933911 ], [ 151.5623248, -33.2941445 ], [ 151.5624022, -33.2952274 ], [ 151.562687399999987, -33.2954687 ], [ 151.5632965, -33.2956864 ], [ 151.563368200000014, -33.295825 ], [ 151.5634748, -33.2958258 ], [ 151.563580009614981, -33.295789457712523 ] ] } }, +{ "type": "Feature", "properties": { "name": "Putty Beach", "id": "relation7966651" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.374493877552396, -33.530326742778264 ], [ 151.374584, -33.5301254 ], [ 151.3743637, -33.5297106 ], [ 151.373875199999986, -33.529385 ], [ 151.373844100000014, -33.5293643 ], [ 151.3728639, -33.5290115 ], [ 151.37204650000001, -33.5287152 ], [ 151.3712362, -33.5288278 ], [ 151.3698502, -33.5291537 ], [ 151.3682556, -33.5295341 ], [ 151.3676686, -33.5296672 ], [ 151.364709, -33.5305599 ], [ 151.3634616, -33.5310258 ], [ 151.36164930000001, -33.5316831 ], [ 151.359989, -33.5324993 ], [ 151.3593483, -33.5330889 ], [ 151.3593024, -33.5332746 ], [ 151.3592055, -33.533642 ], [ 151.3593066, -33.5337617 ], [ 151.359319844298739, -33.533824426470439 ] ] } }, +{ "type": "Feature", "properties": { "name": "Queenscliff Beach", "id": "relation8238628" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.289430921703058, -33.786391631216652 ], [ 151.2892462, -33.7862796 ], [ 151.2892165, -33.7863032 ], [ 151.289198, -33.786324 ], [ 151.289176, -33.786352 ], [ 151.289143, -33.786402 ], [ 151.289108, -33.786458 ], [ 151.28909, -33.78649 ], [ 151.289063, -33.786533 ], [ 151.289034, -33.786574 ], [ 151.289007, -33.786609 ], [ 151.288979, -33.786643 ], [ 151.288948, -33.786676 ], [ 151.288916, -33.786708 ], [ 151.288883, -33.786739 ], [ 151.28875, -33.786923 ], [ 151.288624, -33.787206 ], [ 151.2885953, -33.7872681 ], [ 151.2884411, -33.7877547 ], [ 151.288288200000011, -33.7882941 ], [ 151.28812, -33.788723 ], [ 151.288108599999987, -33.7887918 ], [ 151.288081299999988, -33.7889521 ], [ 151.2880793, -33.7890811 ], [ 151.2880403, -33.7893091 ], [ 151.2880523, -33.7895251 ], [ 151.2880303, -33.7897531 ], [ 151.2880093, -33.7899415 ], [ 151.2880203, -33.7902841 ], [ 151.28798230000001, -33.7904831 ], [ 151.287958300000014, -33.7908271 ], [ 151.287955581145837, -33.7908440102565 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation8302312" }, "geometry": { "type": "LineString", "coordinates": [ [ 151.721865156703785, -33.013615519729449 ], [ 151.7216651, -33.0135393 ], [ 151.7212916, -33.0140729 ], [ 151.720171099999988, -33.0146243 ], [ 151.718809599999986, -33.0152986 ], [ 151.7161389, -33.0166235 ], [ 151.7156535, -33.0168653 ], [ 151.7150545, -33.0173093 ], [ 151.7145159, -33.0177548 ], [ 151.7129536, -33.0185976 ], [ 151.710780199999988, -33.0197821 ], [ 151.7081207, -33.0213843 ], [ 151.704199499999987, -33.0239022 ], [ 151.704096099999987, -33.0239686 ], [ 151.7024457, -33.0251285 ], [ 151.7000689, -33.0265969 ], [ 151.6983544, -33.0277927 ], [ 151.697140600000012, -33.0286641 ], [ 151.6948495, -33.0302351 ], [ 151.6920046, -33.0322576 ], [ 151.6889928, -33.0344201 ], [ 151.686732, -33.0361436 ], [ 151.6843878, -33.0379625 ], [ 151.6819829, -33.0398895 ], [ 151.6797942, -33.041717 ], [ 151.6777825, -33.0433674 ], [ 151.675846, -33.0450177 ], [ 151.6742667, -33.0464847 ], [ 151.674070300000011, -33.0466565 ], [ 151.6721494, -33.0486129 ], [ 151.6704953, -33.0503559 ], [ 151.6688591, -33.0520456 ], [ 151.667454, -33.0534507 ], [ 151.6670983, -33.0541087 ], [ 151.6666892, -33.0543577 ], [ 151.6656398, -33.0557628 ], [ 151.663968, -33.0581105 ], [ 151.66339880000001, -33.0593911 ], [ 151.6625807, -33.0602804 ], [ 151.661887, -33.0613653 ], [ 151.661264499999987, -33.0628238 ], [ 151.6607134, -33.0640565 ], [ 151.6599128, -33.0653849 ], [ 151.6594504, -33.0666122 ], [ 151.658899, -33.0682662 ], [ 151.6582587, -33.0709519 ], [ 151.6577963, -33.0729439 ], [ 151.6573339, -33.0751138 ], [ 151.6573694, -33.0763588 ], [ 151.6575651, -33.0777105 ], [ 151.657956399999989, -33.0794001 ], [ 151.658561099999986, -33.0810009 ], [ 151.6593158, -33.0823624 ], [ 151.6599247, -33.0833532 ], [ 151.6605869, -33.0838829 ], [ 151.660794847474136, -33.083832106812537 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation9129779" }, "geometry": { "type": "LineString", "coordinates": [ [ 153.271285719648148, -29.912541542256655 ], [ 153.271187200000014, -29.9127237 ], [ 153.271017300000011, -29.9128848 ], [ 153.2709188, -29.9129932 ], [ 153.2709458, -29.9131148 ], [ 153.2710842, -29.9132731 ], [ 153.271184, -29.9135072 ], [ 153.271327, -29.9137246 ], [ 153.2714388, -29.9138717 ], [ 153.2716489, -29.9139924 ], [ 153.2718208, -29.9141417 ], [ 153.2718736, -29.9142381 ], [ 153.2718433, -29.9143925 ], [ 153.2718339, -29.9146164 ], [ 153.2719018, -29.9149337 ], [ 153.2720745, -29.9152078 ], [ 153.272052800000012, -29.9157302 ], [ 153.272138899999987, -29.9159864 ], [ 153.2723181, -29.9162259 ], [ 153.272310800000014, -29.9165978 ], [ 153.272226560325805, -29.916787041717068 ] ] } } +] +} diff --git a/notebooks/14_polygons_Australia.geojson b/notebooks/14_polygons_Australia.geojson new file mode 100644 index 0000000..225b7c5 --- /dev/null +++ b/notebooks/14_polygons_Australia.geojson @@ -0,0 +1,121 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "area": 7.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.312088315737213, -33.731759753314719 ], [ 151.285874532141236, -33.751609891372972 ], [ 151.297531748333455, -33.762252811053656 ], [ 151.323745531929404, -33.742405136585639 ], [ 151.312088315737213, -33.731759753314719 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 15.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.713316517914194, -34.995462365421304 ], [ 150.659281664445359, -35.030600787434174 ], [ 150.670674540619729, -35.042349525480454 ], [ 150.724709394088478, -35.007216152925253 ], [ 150.713316517914194, -34.995462365421304 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 70.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.82981739277065, -35.018834239509481 ], [ 150.784681201002428, -34.897414824136412 ], [ 150.749617385613391, -34.906176096351778 ], [ 150.794753577381641, -35.027582539642225 ], [ 150.82981739277065, -35.018834239509481 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 89.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.782495693468775, -34.759702105265937 ], [ 150.72399620090647, -34.893522285583018 ], [ 150.763036455392097, -34.905012361594544 ], [ 150.821535947954374, -34.771210869337644 ], [ 150.782495693468775, -34.759702105265937 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 6.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.754206923578749, -32.956209566436968 ], [ 151.744701746269357, -32.94977700104937 ], [ 151.718177158233004, -32.977371201523567 ], [ 151.727682335542426, -32.983801757994669 ], [ 151.754206923578749, -32.956209566436968 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.793569233070116, -32.93097358298138 ], [ 151.807064777797081, -32.918386849090048 ], [ 151.799100500026384, -32.912369673799752 ], [ 151.785604955299391, -32.924957263513647 ], [ 151.793569233070116, -32.93097358298138 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.331729438717161, -35.602436909218632 ], [ 150.317524165859396, -35.610124264056566 ], [ 150.323184684185208, -35.617037952137039 ], [ 150.337389957042944, -35.609351261642296 ], [ 150.331729438717161, -35.602436909218632 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.312737289062994, -33.673730230020134 ], [ 151.303256152301003, -33.689094759163098 ], [ 151.311864609684051, -33.692772702173606 ], [ 151.321345746445985, -33.677408830427957 ], [ 151.312737289062994, -33.673730230020134 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.302340369031612, -33.697192592485045 ], [ 151.290758794763605, -33.724705632327918 ], [ 151.302824314848607, -33.728219493623143 ], [ 151.314405889116614, -33.70070757978894 ], [ 151.302340369031612, -33.697192592485045 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 6.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.288799030402345, -33.72209486483851 ], [ 151.305146039351598, -33.746796602660645 ], [ 151.317975972497834, -33.74092525514758 ], [ 151.301628963548637, -33.716221826848752 ], [ 151.288799030402345, -33.72209486483851 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.320261262580914, -33.645116643437291 ], [ 151.3177204166509, -33.661984494473529 ], [ 151.328458288803034, -33.663105117045426 ], [ 151.330999134733048, -33.646237485670866 ], [ 151.320261262580914, -33.645116643437291 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.074261832544352, -34.162722562976754 ], [ 151.057630601818232, -34.172219525791412 ], [ 151.063182321393157, -34.178874650241639 ], [ 151.079813552119219, -34.169378436289875 ], [ 151.074261832544352, -34.162722562976754 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.43210802028446, -33.484173036709436 ], [ 151.416905970657183, -33.499875874069183 ], [ 151.426668105505371, -33.506448003920248 ], [ 151.441870155132705, -33.490746358598834 ], [ 151.43210802028446, -33.484173036709436 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.174763918244281, -32.733121204831683 ], [ 152.16264721578915, -32.747986274536238 ], [ 152.173306583138185, -32.754132692436642 ], [ 152.185423285593288, -32.739268648247318 ], [ 152.174763918244281, -32.733121204831683 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 97.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.413338437951694, -27.108708653600289 ], [ 153.413148249484067, -27.329433322644011 ], [ 153.44471518705285, -27.32945481062492 ], [ 153.444905375520477, -27.108730184201317 ], [ 153.413338437951694, -27.108708653600289 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 12.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.460770202983269, -27.033389132085823 ], [ 153.433268224716443, -27.115380612976537 ], [ 153.443400448935051, -27.118074144165949 ], [ 153.47090242720185, -27.036084634360744 ], [ 153.460770202983269, -27.033389132085823 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 68.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.530316494803571, -27.429417447915331 ], [ 153.443870597177948, -27.671920174676099 ], [ 153.462182581481869, -27.677045593127747 ], [ 153.548628479107521, -27.434554197017 ], [ 153.530316494803571, -27.429417447915331 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 4.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.835221877751763, -34.723150825111716 ], [ 150.825540622749344, -34.745468211607609 ], [ 150.837476596295346, -34.748964552481603 ], [ 150.847157851297766, -34.726648110362753 ], [ 150.835221877751763, -34.723150825111716 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 10.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.400307922491692, -35.511343157567133 ], [ 150.374180854699148, -35.536034882572153 ], [ 150.390807215784804, -35.54768563228631 ], [ 150.416934283577348, -35.522997492858792 ], [ 150.400307922491692, -35.511343157567133 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 34.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.660304226198974, -35.148589383322879 ], [ 150.548965076403078, -35.18970767243038 ], [ 150.558394400612002, -35.206763227668674 ], [ 150.669733550407926, -35.165653567006572 ], [ 150.660304226198974, -35.148589383322879 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.299008238748627, -33.760853263475894 ], [ 151.285727242147232, -33.773907940484506 ], [ 151.293904190680962, -33.779656046795111 ], [ 151.307185187282386, -33.766602245600147 ], [ 151.299008238748627, -33.760853263475894 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 13.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.467589427210243, -33.3981576366116 ], [ 151.430515110935801, -33.440988361088309 ], [ 151.444222661980405, -33.449251949841653 ], [ 151.481296978254846, -33.406425303049978 ], [ 151.467589427210243, -33.3981576366116 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 10.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.492481980756565, -33.388830711766673 ], [ 151.514931887618161, -33.353711788212586 ], [ 151.499082629565265, -33.346643907113013 ], [ 151.47663272270367, -33.381765683263637 ], [ 151.492481980756565, -33.388830711766673 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.432060293458051, -33.450903174846722 ], [ 151.425837629068894, -33.473643483227704 ], [ 151.442416703322664, -33.476800427186625 ], [ 151.44863936771182, -33.454060947085466 ], [ 151.432060293458051, -33.450903174846722 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.128454335981218, -32.756434077446798 ], [ 152.107032328151519, -32.77771235105596 ], [ 152.117664040466764, -32.785279327103886 ], [ 152.139086048296463, -32.764002862657406 ], [ 152.128454335981218, -32.756434077446798 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.992858478477103, -34.222065914566308 ], [ 150.980484391950597, -34.233613466489345 ], [ 150.987672888643345, -34.238878808862523 ], [ 151.00004697516988, -34.227331978977027 ], [ 150.992858478477103, -34.222065914566308 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.868139213834638, -34.578859438343358 ], [ 150.870466995898141, -34.594297279017439 ], [ 150.881138687822556, -34.59320675445516 ], [ 150.878810905759053, -34.577768711165369 ], [ 150.868139213834638, -34.578859438343358 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.23774933826914, -35.696663359987745 ], [ 150.206496383273588, -35.703563551310324 ], [ 150.209761317646951, -35.713314777259207 ], [ 150.241014272642474, -35.706415429932989 ], [ 150.23774933826914, -35.696663359987745 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 10.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.919208551841905, -34.367451752847487 ], [ 150.890723123788263, -34.408216967905773 ], [ 150.904065662130591, -34.414564469699961 ], [ 150.932551090184205, -34.37380234652025 ], [ 150.919208551841905, -34.367451752847487 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.177953326371522, -34.027823044343982 ], [ 151.151637938977444, -34.042789945329602 ], [ 151.159042252526689, -34.051728939184819 ], [ 151.185357639920795, -34.036763615632275 ], [ 151.177953326371522, -34.027823044343982 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.852783610351395, -34.648996763747945 ], [ 150.848035020178543, -34.667436635608318 ], [ 150.858816091310928, -34.66931486892355 ], [ 150.863564681483751, -34.650875415032282 ], [ 150.852783610351395, -34.648996763747945 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 10.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.866290906816261, -34.64824397510219 ], [ 150.865998205884608, -34.609622998491943 ], [ 150.848731050674445, -34.609711624926199 ], [ 150.849023751606126, -34.64833256028971 ], [ 150.866290906816261, -34.64824397510219 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 16.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.537171398065539, -35.240899147147758 ], [ 150.469500903700748, -35.28600858861622 ], [ 150.479084565356999, -35.295590132350817 ], [ 150.546755059721789, -35.250486026965199 ], [ 150.537171398065539, -35.240899147147758 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 6.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.544073559347197, -35.203528793443816 ], [ 150.5207862784969, -35.231560653473863 ], [ 150.53177040586354, -35.237649731904568 ], [ 150.555057686713837, -35.209619975265987 ], [ 150.544073559347197, -35.203528793443816 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.475747870590709, -35.318568368450585 ], [ 150.466368168372952, -35.342059891646727 ], [ 150.479935678068614, -35.345664900983671 ], [ 150.489315380286371, -35.322174425692566 ], [ 150.475747870590709, -35.318568368450585 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 6.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.472540710877098, -35.286223324588846 ], [ 150.46403930846202, -35.319442286186323 ], [ 150.476042474872258, -35.321487798134278 ], [ 150.484543877287336, -35.288269676516023 ], [ 150.472540710877098, -35.286223324588846 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 4.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.451576703458244, -35.398277879408674 ], [ 150.474529807351246, -35.376220494514904 ], [ 150.4662383322067, -35.370484843164647 ], [ 150.44328522831367, -35.392543796192463 ], [ 150.451576703458244, -35.398277879408674 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.389159156614198, -35.457510983492647 ], [ 150.384667278027962, -35.477729819465921 ], [ 150.395675315948381, -35.479351796783376 ], [ 150.400167194534589, -35.459133368650519 ], [ 150.389159156614198, -35.457510983492647 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 11.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.43379877699914, -35.401488318549482 ], [ 150.400353254564749, -35.441127277830027 ], [ 150.413079197965175, -35.448255830299622 ], [ 150.446524720399566, -35.408620379762034 ], [ 150.43379877699914, -35.401488318549482 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 21.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.917548523435613, -34.304819382693033 ], [ 150.908247834528225, -34.37026769055209 ], [ 150.929527427076238, -34.372328700075208 ], [ 150.938828115983625, -34.306882001120272 ], [ 150.917548523435613, -34.304819382693033 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.90284805988415, -34.417857451184368 ], [ 150.892508822208896, -34.448457728019264 ], [ 150.90321746672609, -34.450918632285394 ], [ 150.913556704401316, -34.420319256687456 ], [ 150.90284805988415, -34.417857451184368 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 44.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.889071031435236, -34.480176690135039 ], [ 150.844543135993348, -34.570952129712154 ], [ 150.872632674398659, -34.580299038007595 ], [ 150.917160569840547, -34.489533792590507 ], [ 150.889071031435236, -34.480176690135039 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 80.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.555799979535323, -31.986388186784922 ], [ 152.486296037493844, -32.171328985919544 ], [ 152.513157941717736, -32.178569153204869 ], [ 152.582661883759243, -31.993643018355709 ], [ 152.555799979535323, -31.986388186784922 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.53037060570324, -32.181497416722777 ], [ 152.533153539421079, -32.200026500473513 ], [ 152.543707221023539, -32.198891388772367 ], [ 152.5409242873057, -32.180362073916889 ], [ 152.53037060570324, -32.181497416722777 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 31.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.539144069727456, -32.434911077595139 ], [ 152.398835306988559, -32.481403036214417 ], [ 152.405051144980035, -32.494754363619386 ], [ 152.545359907718904, -32.448269298797904 ], [ 152.539144069727456, -32.434911077595139 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 42.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.92605818535435, -31.464963546930857 ], [ 152.824182625057375, -31.582971262219715 ], [ 152.840309317593665, -31.59308042968663 ], [ 152.942184877890611, -31.475085495469632 ], [ 152.92605818535435, -31.464963546930857 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.283496501484308, -33.884964022501869 ], [ 151.267561779878832, -33.891536572603947 ], [ 151.272372881127467, -33.899573806040685 ], [ 151.288307602732914, -33.89300187529237 ], [ 151.283496501484308, -33.884964022501869 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.51010258022464, -32.426042676288631 ], [ 152.523549798614482, -32.438118247410102 ], [ 152.531870264858441, -32.431517809741749 ], [ 152.518423046468541, -32.41944135473048 ], [ 152.51010258022464, -32.426042676288631 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.076343551681987, -30.895426732993084 ], [ 153.076669333571289, -30.910919963588146 ], [ 153.086732912811584, -30.910764182723778 ], [ 153.086407130922254, -30.895270926912666 ], [ 153.076343551681987, -30.895426732993084 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 7.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.956880530902055, -31.282790655403996 ], [ 152.961857409043546, -31.317475697513601 ], [ 152.976551137513439, -31.315936652109194 ], [ 152.971574259371948, -31.281251043429016 ], [ 152.956880530902055, -31.282790655403996 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 14.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.967143255501924, -31.190130135878658 ], [ 152.95044085987476, -31.251783625329757 ], [ 152.965454344596196, -31.254757096527101 ], [ 152.982156740223331, -31.193105547152246 ], [ 152.967143255501924, -31.190130135878658 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 34.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.958174815931926, -31.313073747471105 ], [ 152.898225469273257, -31.421512768429412 ], [ 152.916078780804099, -31.42870413260334 ], [ 152.976028127462826, -31.320273414519619 ], [ 152.958174815931926, -31.313073747471105 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.291411655635102, -29.777390920898217 ], [ 153.279270692719336, -29.808634976360967 ], [ 153.290739128839391, -29.811990653624473 ], [ 153.302880091755156, -29.780747646070473 ], [ 153.291411655635102, -29.777390920898217 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 9.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.002670690005942, -30.596746771019944 ], [ 153.008240612634779, -30.643680962889054 ], [ 153.021683079498132, -30.642499824428402 ], [ 153.016113156869267, -30.595565059769843 ], [ 153.002670690005942, -30.596746771019944 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 42.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.035452968025766, -31.068837766851505 ], [ 152.960647737790424, -31.183002382806269 ], [ 152.980242822040964, -31.192404932935823 ], [ 153.055048052276334, -31.078251638594566 ], [ 153.035452968025766, -31.068837766851505 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 23.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.620559111548914, -28.634957852435601 ], [ 153.602392492208764, -28.709684798174788 ], [ 153.623586201543361, -28.713649532703943 ], [ 153.641752820883511, -28.638925415908989 ], [ 153.620559111548914, -28.634957852435601 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 11.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.059140948468951, -36.455373508281859 ], [ 150.043755719573483, -36.498451480300211 ], [ 150.059834424865443, -36.50216328336176 ], [ 150.075219653760882, -36.459087375298118 ], [ 150.059140948468951, -36.455373508281859 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.058733516160913, -36.416110908675719 ], [ 150.070363379980819, -36.428793446985765 ], [ 150.079189782968655, -36.42355313070491 ], [ 150.067559919148749, -36.410869736483811 ], [ 150.058733516160913, -36.416110908675719 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.526730241278472, -32.357216650715174 ], [ 152.53745246923836, -32.36245977902913 ], [ 152.556117454533648, -32.335221266052457 ], [ 152.545395226573788, -32.329976558887907 ], [ 152.526730241278472, -32.357216650715174 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.525607334974211, -32.373071857191974 ], [ 152.509496939263869, -32.402532938564228 ], [ 152.520287857935244, -32.406739958767311 ], [ 152.536398253645586, -32.377280249873458 ], [ 152.525607334974211, -32.373071857191974 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 26.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.546255812381759, -32.224807690683399 ], [ 152.506809074804153, -32.311036727505233 ], [ 152.524875227170412, -32.316942711017639 ], [ 152.564321964748046, -32.230719289367975 ], [ 152.546255812381759, -32.224807690683399 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 21.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.688641145786477, -31.869860751726847 ], [ 152.598239461321839, -31.946508238385423 ], [ 152.607858251424858, -31.954679852445107 ], [ 152.698259935889467, -31.878039175882968 ], [ 152.688641145786477, -31.869860751726847 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 7.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.365029412539741, -29.432636998586727 ], [ 153.348901389133403, -29.469105332821144 ], [ 153.361378396834908, -29.473288479835848 ], [ 153.377506420241247, -29.436821649350204 ], [ 153.365029412539741, -29.432636998586727 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.694519103595951, -35.066258225038425 ], [ 150.685571715218913, -35.080943375821327 ], [ 150.694486093373769, -35.084580908178324 ], [ 150.703433481750835, -35.06989641208434 ], [ 150.694519103595951, -35.066258225038425 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 4.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.02790527656353, -30.498239435406575 ], [ 153.02269325296129, -30.526808822712351 ], [ 153.032375488760806, -30.528119643279723 ], [ 153.037587512363046, -30.499550641238759 ], [ 153.02790527656353, -30.498239435406575 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 15.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.557549872444213, -28.593052922738785 ], [ 153.606537025181154, -28.648923265351776 ], [ 153.61853611694562, -28.64081834007602 ], [ 153.569548964208707, -28.584943684106371 ], [ 153.557549872444213, -28.593052922738785 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.220334942658525, -35.807510329173525 ], [ 150.222822268469201, -35.821228866610518 ], [ 150.23378200010049, -35.819922263351017 ], [ 150.231294674289842, -35.80620350014803 ], [ 150.220334942658525, -35.807510329173525 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 14.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.174137297509276, -35.823516378914633 ], [ 150.164961041884709, -35.860779282120802 ], [ 150.18919494538045, -35.864699843517201 ], [ 150.198371201005017, -35.827438782641579 ], [ 150.174137297509276, -35.823516378914633 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 16.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.165777759973736, -35.851035862090335 ], [ 150.136320261082119, -35.903445763990206 ], [ 150.153398594755259, -35.909745629907285 ], [ 150.182856093646876, -35.857339897677299 ], [ 150.165777759973736, -35.851035862090335 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.100969921923877, -30.351490298601746 ], [ 153.094184020450314, -30.379144909540003 ], [ 153.10844080816068, -30.381748871852658 ], [ 153.115226709634214, -30.354094997407792 ], [ 153.100969921923877, -30.351490298601746 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 8.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.96071729378852, -37.245131286879975 ], [ 149.932686679588727, -37.281901182844848 ], [ 149.944112056833433, -37.287416382600348 ], [ 149.972142671033225, -37.250649180212328 ], [ 149.96071729378852, -37.245131286879975 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 68.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.393296291402436, -32.471689777403078 ], [ 152.263166316201023, -32.582622747197064 ], [ 152.284331661566995, -32.600259831098413 ], [ 152.414461636768436, -32.489348657441234 ], [ 152.393296291402436, -32.471689777403078 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 10.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.566955606277105, -28.31350633644356 ], [ 153.566994043912956, -28.364403154087459 ], [ 153.581598175587715, -28.364394612160908 ], [ 153.581559737951864, -28.313497790423689 ], [ 153.566955606277105, -28.31350633644356 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.323944811235833, -35.629359198715811 ], [ 150.301016341957137, -35.632969353719176 ], [ 150.303469086492498, -35.643259322803935 ], [ 150.326397555771166, -35.639649632584238 ], [ 150.323944811235833, -35.629359198715811 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.301788601143869, -35.633672046988373 ], [ 150.287381175450633, -35.658743461891603 ], [ 150.298237219991961, -35.662862412603111 ], [ 150.312644645685225, -35.637792290534193 ], [ 150.301788601143869, -35.633672046988373 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.200993450929104, -35.695762007514091 ], [ 150.185468113659539, -35.703589551082267 ], [ 150.190869243704554, -35.71065377661219 ], [ 150.20639458097412, -35.702826926616176 ], [ 150.200993450929104, -35.695762007514091 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 11.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.007443240734915, -36.637572552567505 ], [ 149.983151534874082, -36.680951259884239 ], [ 149.997607962199652, -36.686159259677382 ], [ 150.021899668060485, -36.642783488017528 ], [ 150.007443240734915, -36.637572552567505 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 4.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.947123319521353, -37.355907479046856 ], [ 149.944581160759611, -37.379231991707378 ], [ 149.955734593519367, -37.379999704917353 ], [ 149.958276752281108, -37.356675430961559 ], [ 149.947123319521353, -37.355907479046856 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 15.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.12589147682732, -36.100705379899267 ], [ 150.116044689846262, -36.164782735637523 ], [ 150.131184238173063, -36.166299684288582 ], [ 150.14103102515412, -36.102223567670634 ], [ 150.12589147682732, -36.100705379899267 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 7.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.150895485010807, -36.013124875496636 ], [ 150.133328495567525, -36.053523154670351 ], [ 150.144559457025167, -36.056716009660974 ], [ 150.162126446468449, -36.01631936858422 ], [ 150.150895485010807, -36.013124875496636 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 68.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.772273056596134, -31.717898691811367 ], [ 152.712427680871201, -31.836168983864475 ], [ 152.746026128712913, -31.848446516127446 ], [ 152.805871504437874, -31.73019193633041 ], [ 152.772273056596134, -31.717898691811367 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 7.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.989493574791879, -30.760048806130182 ], [ 152.991879197907707, -30.798180419014635 ], [ 153.004503644948954, -30.797597539682879 ], [ 153.002118021833127, -30.759465695700012 ], [ 152.989493574791879, -30.760048806130182 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 13.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.277794846295905, -29.82235010198044 ], [ 153.253959742910183, -29.876738038856626 ], [ 153.269601929992376, -29.881893368777018 ], [ 153.293437033378098, -29.827508241151222 ], [ 153.277794846295905, -29.82235010198044 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 7.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.254229131824076, -29.874447999881987 ], [ 153.267566479566426, -29.901857513639534 ], [ 153.282688589948748, -29.896326931200122 ], [ 153.269351242206426, -29.868915896712689 ], [ 153.254229131824076, -29.874447999881987 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 14.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.344637190483979, -29.575464868401184 ], [ 153.369602543233555, -29.513083544948621 ], [ 153.354714391912239, -29.508572460817479 ], [ 153.329749039162692, -29.570956567015674 ], [ 153.344637190483979, -29.575464868401184 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.362737747409909, -29.477445405187137 ], [ 153.350662031579162, -29.497432300536605 ], [ 153.36074039013414, -29.502045538668089 ], [ 153.372816105964887, -29.482059553487954 ], [ 153.362737747409909, -29.477445405187137 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 14.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.320146124747509, -29.570645511048539 ], [ 153.326721920535533, -29.617892143549035 ], [ 153.348291180744212, -29.615622805009636 ], [ 153.341715384956188, -29.568375109488429 ], [ 153.320146124747509, -29.570645511048539 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 32.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.995057588166247, -30.645326962844418 ], [ 152.978718199536701, -30.746980018879675 ], [ 153.000642826229068, -30.74958434257352 ], [ 153.016982214858587, -30.647934031146121 ], [ 152.995057588166247, -30.645326962844418 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 11.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.56574215412877, -28.321042880928342 ], [ 153.576646967460789, -28.322863201806179 ], [ 153.591499775291055, -28.253891177503917 ], [ 153.580594961959008, -28.252069676968144 ], [ 153.56574215412877, -28.321042880928342 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.137571081393247, -30.276322562400033 ], [ 153.133058608740953, -30.299554708416988 ], [ 153.144218632256468, -30.301170784397364 ], [ 153.148731104908762, -30.277939021166041 ], [ 153.137571081393247, -30.276322562400033 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 11.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.165656048374757, -35.957394920534476 ], [ 150.166246789564497, -35.907538102108255 ], [ 150.151055464443601, -35.907420052725122 ], [ 150.150464723253862, -35.957276945575231 ], [ 150.165656048374757, -35.957394920534476 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 10.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.549691773803886, -28.5355217517371 ], [ 153.562793840662067, -28.595908674150497 ], [ 153.574151275641327, -28.594008419731992 ], [ 153.561049208783146, -28.533620406644971 ], [ 153.549691773803886, -28.5355217517371 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.464585299834823, -28.114480730957347 ], [ 153.475531490307674, -28.129430619960267 ], [ 153.483446286638525, -28.124923201117159 ], [ 153.472500096165703, -28.109972683559892 ], [ 153.464585299834823, -28.114480730957347 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.126252219774756, -36.199558378437217 ], [ 150.128761030756976, -36.213816861646031 ], [ 150.138454184084168, -36.212706528380018 ], [ 150.135945373101947, -36.198447842874081 ], [ 150.126252219774756, -36.199558378437217 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 9.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.072165346981933, -36.372487726327627 ], [ 150.055711366780514, -36.41430073553596 ], [ 150.068902154975234, -36.417663179118982 ], [ 150.085356135176653, -36.375851979149459 ], [ 150.072165346981933, -36.372487726327627 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.14452858170128, -36.260574211554953 ], [ 150.122240618993203, -36.289157009337394 ], [ 150.131593727687289, -36.293896170263906 ], [ 150.153881690395366, -36.265315107975731 ], [ 150.14452858170128, -36.260574211554953 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.126885541351982, -36.085934320536161 ], [ 150.133363903413453, -36.098672202540037 ], [ 150.143262757164621, -36.095385020868513 ], [ 150.136784395103149, -36.082646606084559 ], [ 150.126885541351982, -36.085934320536161 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 2.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.252426757662533, -33.941576829965534 ], [ 151.252364256796739, -33.957664398960631 ], [ 151.263153831247166, -33.957693240728936 ], [ 151.263216332112961, -33.941605677186324 ], [ 151.252426757662533, -33.941576829965534 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 25.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.503024641329773, -33.351022779979488 ], [ 151.577393068494985, -33.290723412378014 ], [ 151.563366240797961, -33.278639156093327 ], [ 151.488997813632778, -33.33894688009422 ], [ 151.503024641329773, -33.351022779979488 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 18.7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.60391978725491, -28.721882073666812 ], [ 153.585402173111561, -28.803430405663754 ], [ 153.601022913046734, -28.806155109203882 ], [ 153.619540527190111, -28.724608906808825 ], [ 153.60391978725491, -28.721882073666812 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 693.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.307709695430958, -24.988508915482228 ], [ 153.022000003224207, -25.785262616088694 ], [ 153.079420107856293, -25.802011102636783 ], [ 153.365129800063073, -25.005368329745604 ], [ 153.307709695430958, -24.988508915482228 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 6.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.833742791696693, -31.603121692047083 ], [ 152.827404978140862, -31.638465804471075 ], [ 152.839302590570952, -31.640012492853824 ], [ 152.845640404126783, -31.604668968002549 ], [ 152.833742791696693, -31.603121692047083 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 4.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.322909612995119, -33.577499042299621 ], [ 151.318960206919115, -33.60309760378393 ], [ 151.331637176589396, -33.604454571076012 ], [ 151.335586582665428, -33.578856412312042 ], [ 151.322909612995119, -33.577499042299621 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 28.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.219183428195493, -29.973573757379498 ], [ 153.183866690095726, -30.058950363870849 ], [ 153.204242952428842, -30.06526697414898 ], [ 153.239559690528637, -29.979895808333573 ], [ 153.219183428195493, -29.973573757379498 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 9.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.188130603465112, -30.081075068925884 ], [ 153.193103719409834, -30.116214438045755 ], [ 153.210750111957282, -30.114345419567229 ], [ 153.20577699601256, -30.079205385917756 ], [ 153.188130603465112, -30.081075068925884 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 77.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.053383035788812, -30.915952615761139 ], [ 153.022577374416386, -31.053280525921295 ], [ 153.060058801459775, -31.059455453740959 ], [ 153.090864462832201, -30.92213643824433 ], [ 153.053383035788812, -30.915952615761139 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 12.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.135066978901961, -30.304699731399385 ], [ 153.096923316797842, -30.353454590299886 ], [ 153.109226019626419, -30.360623329927343 ], [ 153.147369681730567, -30.311872041071432 ], [ 153.135066978901961, -30.304699731399385 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 148.9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.559780278105933, -28.858905165374594 ], [ 153.404829827173927, -29.103121155816151 ], [ 153.437734656731266, -29.119077311325952 ], [ 153.592685107663272, -28.874899044667824 ], [ 153.559780278105933, -28.858905165374594 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 5.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.574814149386327, -28.35757451714586 ], [ 153.562477795765716, -28.389575377269619 ], [ 153.572700006881519, -28.392625610925453 ], [ 153.58503636050213, -28.360625671113336 ], [ 153.574814149386327, -28.35757451714586 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 33.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.599901815272347, -33.188108642431708 ], [ 151.542194492731795, -33.261615695321318 ], [ 151.563861760300512, -33.273513131011249 ], [ 151.621569082841063, -33.200016081658021 ], [ 151.599901815272347, -33.188108642431708 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 11.0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.62486053843574, -33.139052104237216 ], [ 151.619195155562437, -33.17764141657679 ], [ 151.6381444023867, -33.179590690750238 ], [ 151.643809785260004, -33.141002236368706 ], [ 151.62486053843574, -33.139052104237216 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 61.4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.647932321766802, -33.117158806658004 ], [ 151.735052086265171, -33.017016218993483 ], [ 151.707974250578189, -33.000461536667551 ], [ 151.62085448607985, -33.100622947984384 ], [ 151.647932321766802, -33.117158806658004 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 191.2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.063097787308209, -32.754603421880958 ], [ 151.767874785630056, -32.886437323152997 ], [ 151.789535029810764, -32.920660742663429 ], [ 152.084758031488917, -32.788877690879936 ], [ 152.063097787308209, -32.754603421880958 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 67.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.243454296747956, -32.582770954550604 ], [ 152.162404811647633, -32.681872015149025 ], [ 152.19362026601479, -32.699965989790407 ], [ 152.274669751115113, -32.60088498479859 ], [ 152.243454296747956, -32.582770954550604 ] ] ] } }, +{ "type": "Feature", "properties": { "area": 3.6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.377071861239386, -33.523596463255998 ], [ 151.353052179498889, -33.529137911615919 ], [ 151.356141273190929, -33.538442265783701 ], [ 151.38016095493137, -33.53290141373239 ], [ 151.377071861239386, -33.523596463255998 ] ] ] } } +] +} diff --git a/notebooks/14_shoreline_position_vs_wave_energy.ipynb b/notebooks/14_shoreline_position_vs_wave_energy.ipynb new file mode 100644 index 0000000..568baae --- /dev/null +++ b/notebooks/14_shoreline_position_vs_wave_energy.ipynb @@ -0,0 +1,817 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Shoreline position v.s. wave energy\n", + "This notebook looks at the relationship between shoreline position and wave energy." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup notebook" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import datetime\n", + "import pickle\n", + "import fiona\n", + "import shapely\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import geopandas\n", + "from scipy.stats import percentileofscore\n", + "from shapely.geometry import Point\n", + "import numpy as np\n", + "import requests\n", + "from bs4 import BeautifulSoup\n", + "import urllib.parse\n", + "import itertools\n", + "from tqdm import tqdm\n", + "import glob\n", + "from scipy.interpolate import griddata, SmoothBivariateSpline\n", + "from scipy.ndimage.filters import gaussian_filter\n", + "import colorcet as cc" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Shoreline positions" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import Killian's data\n", + "shorelines = pickle.load(open(\"14_timeseries_Australia_2.pkl\", \"rb\"))\n", + "beaches = fiona.open(\"14_beaches_Australia.geojson\")\n", + "polygons = fiona.open(\"14_polygons_Australia.geojson\")\n", + "transects = fiona.open(\"14_transects_Australia.geojson\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "code_folding": [ + 0 + ] + }, + "outputs": [], + "source": [ + "def df_from_csv(csv, index_col, data_folder='../data/interim'):\n", + " print('Importing {}'.format(csv))\n", + " return pd.read_csv(os.path.join(data_folder,csv), index_col=index_col)\n", + "\n", + "# Import Chris' data\n", + "df_sites = df_from_csv('sites.csv', index_col=[0])\n", + "df_obs_impacts = df_from_csv('impacts_observed.csv', index_col=[0])\n", + "df_waves = df_from_csv('waves.csv', index_col=[0,1])\n", + "df_waves.index = df_waves.index.set_levels([df_waves.index.levels[0], pd.to_datetime(df_waves.index.levels[1])])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Get coorindates of transects where Killian has given shoreline data\n", + "transect_data = [x for x in transects if x['properties']['id'] in shorelines.keys()]\n", + "transect_dict = [{'name':x['properties']['name'],\n", + " 'id':x['properties']['id'],\n", + " 'orientation':x['properties']['orientation'],\n", + " 'start_coords': Point(x['geometry']['coordinates'][0][0], x['geometry']['coordinates'][0][1]),\n", + " 'end_coords': Point(x['geometry']['coordinates'][1][0], x['geometry']['coordinates'][1][1])} for x in transect_data]\n", + "df_transects = pd.DataFrame(transect_dict)\n", + "gdf_transects = geopandas.GeoDataFrame(df_transects, geometry='start_coords',crs={'init':'epsg:4326'})\n", + "\n", + "# Find closest Chris transect to each one of Kilian's transects\n", + "# First transform coords using geopandas\n", + "df_sites['coords'] = list(zip(df_sites.lon, df_sites.lat))\n", + "df_sites['coords'] = df_sites['coords'].apply(Point)\n", + "gdf_sites = geopandas.GeoDataFrame(df_sites, geometry='coords',crs={'init':'epsg:4326'})\n", + "gdf_sites['site_id'] = gdf_sites.index" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Find nearest Chris transect for each of Kilian's transect\n", + "\n", + "from shapely.ops import nearest_points\n", + "\n", + "def nearest(row,\n", + " geom_union,\n", + " df1,\n", + " df2,\n", + " geom1_col='geometry',\n", + " geom2_col='geometry',\n", + " src_column=None):\n", + " \"\"\"Find the nearest point and return the corresponding value from specified column.\"\"\"\n", + " # Find the geometry that is closest\n", + " nearest = df2[geom2_col] == nearest_points(row[geom1_col], geom_union)[1]\n", + " # Get the corresponding value from df2 (matching is based on the geometry)\n", + " value = df2[nearest][src_column].get_values()[0]\n", + " return value\n", + "\n", + "unary_union = gdf_sites.unary_union\n", + "gdf_transects['chris_site_id'] = gdf_transects.apply(nearest,\n", + " geom_union=unary_union,\n", + " df1=gdf_transects,\n", + " df2=gdf_sites,\n", + " geom1_col='start_coords',\n", + " geom2_col='coords',\n", + " src_column='site_id',\n", + " axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Got the closests site_id, now check the distance. If distance too far between these sites, then probably not a good match.\n", + "gdf_transects = gdf_transects.merge(gdf_sites[['coords']], left_on='chris_site_id', right_on='site_id')\n", + "gdf_transects = gdf_transects.rename({'coords': 'chris_coords'},axis='columns')\n", + "gdf_transects\n", + "distances = gdf_transects[['start_coords']].to_crs(epsg=28356).distance(\n", + " geopandas.GeoDataFrame(gdf_transects[['chris_coords']],\n", + " geometry='chris_coords',\n", + " crs={\n", + " 'init': 'epsg:4326'\n", + " }).to_crs(epsg=28356))\n", + "\n", + "gdf_transects['transect_to_chris_dist'] = distances" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Limit used transects to 300 m max distance\n", + "gdf_transects = gdf_transects[gdf_transects.transect_to_chris_dist < 300]\n", + "gdf_transects" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Calculate the change to the percentile of shoreline right after the storm\n", + "# Kilian's shorelines are given for z=0 MSL, so find change in shoreline due to storm\n", + "gdf_transects=gdf_transects.merge(df_obs_impacts.width_msl_change_m,left_on=['chris_site_id'], right_on=['site_id'])\n", + "gdf_transects" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# At each beach calculate percentile of shoreline right before the storm\n", + "data = []\n", + "\n", + "for row in gdf_transects.iterrows():\n", + "\n", + " # Get shoreline records\n", + " id_shorelines = shorelines[row[1].id]['chainage']\n", + " id_dates = shorelines[row[1].id]['dates']\n", + "\n", + " # Find last date before June 2016 storm\n", + " dt_storm = datetime.datetime(2016, 6, 3)\n", + " dt_storm = dt_storm.replace(tzinfo=datetime.timezone.utc)\n", + " mask = pd.Series([x < dt_storm for x in id_dates])\n", + " i_last_obs = mask[::-1].idxmax()\n", + "\n", + " last_obs_ch = id_shorelines[i_last_obs]\n", + " last_obs_date = id_dates[i_last_obs]\n", + " post_storm_ch = last_obs_ch + row[1].width_msl_change_m\n", + "\n", + " prestorm_shoreline_pctile = percentileofscore(id_shorelines[~np.isnan(id_shorelines)], last_obs_ch)\n", + " poststorm_shoreline_pctile = percentileofscore(id_shorelines[~np.isnan(id_shorelines)],\n", + " post_storm_ch)\n", + " change_shoreline_pctile = poststorm_shoreline_pctile - prestorm_shoreline_pctile\n", + "\n", + " rel_change_shoreline_pctile = (poststorm_shoreline_pctile- prestorm_shoreline_pctile)/prestorm_shoreline_pctile *100\n", + " \n", + " # Calculate percentile of shoreline score\n", + " data.append({\n", + " 'prestorm_shoreline_pctile': prestorm_shoreline_pctile,\n", + " 'poststorm_shoreline_pctile': poststorm_shoreline_pctile,\n", + " 'change_shoreline_pctile': change_shoreline_pctile,\n", + " 'rel_change_shoreline_pctile': rel_change_shoreline_pctile,\n", + " 'index': row[0]\n", + " })\n", + "\n", + "data = pd.DataFrame(data).set_index('index')\n", + "gdf_transects = gdf_transects.join(data)\n", + "gdf_transects" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Grab data from NSW Nearshore wave transformation tool.\n", + "# Need to relate Kilian's site id\n", + "sites = [{\n", + " 'id': 'way4042355',\n", + " 'site_id': 'DEEWHYs0003',\n", + " 'nsw_nearshore_id': 1007832\n", + "}, {\n", + " 'id': 'way13858409',\n", + " 'site_id': 'DEEWHYn0003',\n", + " 'nsw_nearshore_id': 1007822, \n", + "}, {\n", + " 'id': 'way13858412',\n", + " 'site_id': 'MONA0011',\n", + " 'nsw_nearshore_id': 1007726, \n", + "},\n", + "{\n", + " 'id': 'way14040821',\n", + " 'site_id': 'NARRA0007',\n", + " 'nsw_nearshore_id': 1007760, \n", + "},{\n", + " 'id': 'way14040977',\n", + " 'site_id': 'NARRA0018',\n", + " 'nsw_nearshore_id': 1007770, \n", + "},{\n", + " 'id': 'way14041013',\n", + " 'site_id': 'NARRA0030',\n", + " 'nsw_nearshore_id': 1007778, \n", + "},{\n", + " 'id': 'way25005079',\n", + " 'site_id': 'MACM0009',\n", + " 'nsw_nearshore_id': 1007354, \n", + "},{\n", + " 'id': 'way54609773',\n", + " 'site_id': 'WAMBE0005',\n", + " 'nsw_nearshore_id': 1007264, \n", + "},{\n", + " 'id': 'way54667480',\n", + " 'site_id': 'AVOCAn0005',\n", + " 'nsw_nearshore_id': 1007306, \n", + "},{\n", + " 'id': 'way54669965',\n", + " 'site_id': 'AVOCAs0004',\n", + " 'nsw_nearshore_id': 1007312, \n", + "},{\n", + " 'id': 'way134627391',\n", + " 'site_id': 'ONEMILE0007',\n", + " 'nsw_nearshore_id': 1005098, \n", + "},{\n", + " 'id': 'way159040990',\n", + " 'site_id': 'LHOUSE0004',\n", + " 'nsw_nearshore_id': 1005448, \n", + "},{\n", + " 'id': 'way173070325',\n", + " 'site_id': 'LHOUSEn0077',\n", + " 'nsw_nearshore_id': 1004186, \n", + "},{\n", + " 'id': 'way182614828',\n", + " 'site_id': 'TREACH0009',\n", + " 'nsw_nearshore_id': 1005472, \n", + "},{\n", + " 'id': 'way189407637',\n", + " 'site_id': 'NSHORE_n0063',\n", + " 'nsw_nearshore_id': 1003994, \n", + "},{\n", + " 'id': 'way190929758',\n", + " 'site_id': 'CRESn0069',\n", + " 'nsw_nearshore_id': 1003708, \n", + "},{\n", + " 'id': 'way222144734',\n", + " 'site_id': 'BLUEYS0002',\n", + " 'nsw_nearshore_id': 1005316, \n", + "},{\n", + " 'id': 'way222145626',\n", + " 'site_id': 'BOOM0008',\n", + " 'nsw_nearshore_id': 1005298, \n", + "},{\n", + " 'id': 'way224198013',\n", + " 'site_id': 'MANNING0048',\n", + " 'nsw_nearshore_id': 1004712, \n", + "},{\n", + " 'id': 'way450323845',\n", + " 'site_id': 'NAMB0033',\n", + " 'nsw_nearshore_id': np.nan, \n", + "},{\n", + " 'id': 'relation2303044',\n", + " 'site_id': 'ENTRA0041',\n", + " 'nsw_nearshore_id': 1007110, \n", + "},{\n", + " 'id': 'relation2723197',\n", + " 'site_id': 'GRANTSn0022',\n", + " 'nsw_nearshore_id': 1004296, \n", + "}\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def nearshore_wave_csv_url(id,start_date,end_date):\n", + " URL = 'http://www.nswaves.com.au/transform.php'\n", + " payload = {\n", + " 'init': '1',\n", + " 'type': 'Transform-Full',\n", + " 'startsite': '{}'.format(id),\n", + " 'endsite': '{}'.format(id),\n", + " 'timestep': 'null',\n", + " 'startdate': start_date.strftime('%Y-%m-%d'),\n", + " 'starthour': '00',\n", + " 'enddate': end_date.strftime('%Y-%m-%d'),\n", + " 'endhour': '00',\n", + " 'sitestep': '1',\n", + " 'method': 'Parametric',\n", + " 'source': 'Waverider',\n", + " 'filename': 'ckl',\n", + " 'format': 'csv',\n", + " }\n", + "\n", + " session = requests.session()\n", + " r = requests.post(URL, data=payload)\n", + " \n", + " soup = BeautifulSoup(r.text)\n", + " \n", + " # Check if data extraction was successful\n", + " if soup.findAll(text=\"OK : Data Extraction Successful - Click filename/s to download data file\"):\n", + "\n", + " # Find all links\n", + " for link in soup.find_all('a'):\n", + "\n", + " href = link.get('href')\n", + " if '/data/full' not in href:\n", + " continue\n", + "\n", + " # Convert to absolute convert to absolute url\n", + " csv_url = urllib.parse.urljoin(URL, href)\n", + "\n", + " return csv_url\n", + " else:\n", + " return None\n", + "\n", + " \n", + "def download_csv(url, file_path):\n", + " urllib.request.urlretrieve(url,file_path)\n", + " print('Downloaded {}'.format(file_path))\n", + " \n", + " \n", + "def daterange(start_date, end_date,delta):\n", + " while start_date < end_date:\n", + " yield start_date\n", + " start_date += delta\n", + " \n", + "def download_nearshore_csv(id, site_id, nsw_nearshore_id, start_date, end_date,output_folder='./14_nearshore_waves/'):\n", + " \n", + " # Create output folder if doesn't already exists\n", + " os.makedirs(output_folder, exist_ok=True)\n", + "\n", + " # Output filename\n", + " output_filename = '{}_{}_{}_{}_{}.csv'.format(\n", + " id,\n", + " site_id,\n", + " nsw_nearshore_id,\n", + " start_date.strftime('%Y%m%d'),\n", + " end_date.strftime('%Y%m%d'),\n", + " )\n", + " output_filepath = os.path.join(output_folder,output_filename)\n", + "\n", + " # Don't download if file already exists\n", + " if os.path.isfile(output_filepath):\n", + " return\n", + "\n", + " csv_url = nearshore_wave_csv_url(nsw_nearshore_id,start_date,end_date)\n", + "\n", + " if csv_url:\n", + " download_csv(csv_url, output_filepath)\n", + " else:\n", + " print('No url found')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# start_year = 2005\n", + "# end_year = 2015\n", + "# output_folder = './14_nearshore_waves/'\n", + "\n", + "# # Create list of start end dates we want to request\n", + "# date_ranges = [(datetime.datetime(x, 1, 1), datetime.datetime(x, 12, 31))\n", + "# for x in range(start_year, end_year + 1)]\n", + "\n", + "# inputs = list(itertools.product(sites, date_ranges))\n", + "\n", + "# for inpt in inputs:\n", + "# download_nearshore_csv(inpt[0]['id'], inpt[0]['site_id'], inpt[0]['nsw_nearshore_id'], inpt[1][0], inpt[1][1])\n", + "# break" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# # Use a queue to get data\n", + "\n", + "# from queue import Queue\n", + "# from threading import Thread\n", + "# q = Queue(maxsize=0)\n", + "# num_theads = 4\n", + "\n", + "# start_year = 2005\n", + "# end_year = 2015\n", + "# date_ranges = [(datetime.datetime(x, 1, 1), datetime.datetime(x, 12, 31))\n", + "# for x in range(start_year, end_year + 1)]\n", + "\n", + "# inputs = [x for x in list(itertools.product(sites, date_ranges))]\n", + "\n", + "# #Populating Queue with tasks\n", + "# results = [{} for x in inputs]\n", + "\n", + "# #load up the queue with the urls to fetch and the index for each job (as a tuple):\n", + "# for i, inpt in enumerate(inputs):\n", + "# q.put((i, inpt))\n", + "\n", + "\n", + "# # Threaded function for queue processing.\n", + "# def crawl(q, result):\n", + "# while not q.empty():\n", + "# work = q.get() #fetch new work from the Queue\n", + "# print(work)\n", + "# download_nearshore_csv(work[1][0]['id'], work[1][0]['site_id'],\n", + "# work[1][0]['nsw_nearshore_id'], work[1][1][0],\n", + "# work[1][1][1])\n", + "# #signal to the queue that task has been processed\n", + "# q.task_done()\n", + "# return True\n", + "\n", + "\n", + "# #Starting worker threads on queue processing\n", + "# for i in range(num_theads):\n", + "# print('Starting thread {}'.format(i))\n", + "# worker = Thread(target=crawl, args=(q, results))\n", + "# worker.setDaemon(True) #setting threads as \"daemon\" allows main program to\n", + "# #exit eventually even if these dont finish\n", + "# #correctly.\n", + "# worker.start()\n", + "\n", + "# #now we wait until the queue has been processed\n", + "# q.join()\n", + "# print('All tasks completed.')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# For each site, get\n", + "for site in sites:\n", + "\n", + " # print(site)\n", + " df_sites\n", + "\n", + " # Get shoreline orientation\n", + " orientation = df_sites.loc[[site['site_id']]].orientation.iloc[0]\n", + "\n", + " # Get peak hour wave energy from June 2016 storm\n", + " max_hrly_wave_power = df_waves.loc[[site['site_id']]].Pxs.max()\n", + "\n", + " # Load nearshore wave csv files into one dataframe\n", + " site_nearshore_wave_files = glob.glob('./14_nearshore_waves/*{}*'.format(\n", + " site['site_id']))\n", + "\n", + " if len(site_nearshore_wave_files) == 0:\n", + " continue\n", + "\n", + " df_hist_waves = pd.concat((pd.read_csv(f,\n", + " skiprows=8,\n", + " index_col=0,\n", + " names=['Hs', 'Tp', 'dir'],\n", + " na_values=' NaN')\n", + " for f in site_nearshore_wave_files))\n", + " df_hist_waves.index = pd.to_datetime(df_hist_waves.index)\n", + "\n", + " # At each row, calculate crossshore component of nearshore wave energy\n", + " df_hist_waves['d'] = 10\n", + " df_hist_waves['L'] = 9.81 * df_hist_waves.Tp**2 / 2 / np.pi\n", + " df_hist_waves['n'] = 0.5 * (\n", + " 1 + (4 * np.pi * df_hist_waves.d / df_hist_waves.L) /\n", + " (np.sinh(4 * np.pi * df_hist_waves.d / df_hist_waves.L)))\n", + " df_hist_waves['E'] = 1 / 16 * 1025 * 9.81 * df_hist_waves.Hs**2\n", + " df_hist_waves['C'] = 9.81 * df_hist_waves.Tp / 2 / np.pi * np.tanh(\n", + " 2 * np.pi * df_hist_waves.d / df_hist_waves.L)\n", + " df_hist_waves['shoreline_tn_angle'] = 270 - orientation\n", + " df_hist_waves.loc[\n", + " df_hist_waves.shoreline_tn_angle > 360,\n", + " 'shoreline_tn_angle'] = df_hist_waves.shoreline_tn_angle - 360\n", + " df_hist_waves[\n", + " 'alpha'] = df_hist_waves.shoreline_tn_angle - df_hist_waves.dir\n", + " df_hist_waves[\n", + " 'Px'] = df_hist_waves.n * df_hist_waves.E * df_hist_waves.C * np.cos(\n", + " np.deg2rad(df_hist_waves.alpha))\n", + "\n", + " # Apply percentileofscore for June 2016 wave energy\n", + " storm_Px_hrly_pctile = percentileofscore(df_hist_waves.Px.dropna().values,\n", + " max_hrly_wave_power,\n", + " kind='mean')\n", + "\n", + " # Calculate cumulate wave energy from storm\n", + " idx = ((df_waves.index.get_level_values('datetime') > '2016-06-04') &\n", + " (df_waves.index.get_level_values('datetime') < '2016-06-07') &\n", + " (df_waves.index.get_level_values('site_id') == site['site_id']))\n", + " hrs = len(df_waves[idx])\n", + " Pxscum_storm = df_waves[idx].Pxs.sum()\n", + " \n", + " # Calculate cumulate wave energy of mean wave conditions over length of storm\n", + " Pxscum_mean = df_hist_waves['Px'].mean() * hrs\n", + " Pxscum_storm_mean_ratio = Pxscum_storm / Pxscum_mean\n", + "\n", + " # Add to gdf_transects dataframe\n", + " idx = gdf_transects[gdf_transects.chris_site_id == site['site_id']].index\n", + " gdf_transects.loc[idx, 'storm_Px_hrly_pctile'] = storm_Px_hrly_pctile\n", + " gdf_transects.loc[idx, 'Pxscum_storm'] = Pxscum_storm\n", + " gdf_transects.loc[idx, 'Pxscum_mean'] = Pxscum_mean\n", + " gdf_transects.loc[idx, 'Pxscum_storm_mean_ratio'] = Pxscum_storm_mean_ratio\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "gdf_transects.sort_values(by='Pxscum_storm_mean_ratio',ascending=False).head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "gdf_transects.sort_values(by='rel_change_shoreline_pctile').head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Drop nans\n", + "gdf_transects = gdf_transects.dropna(axis='index',\n", + " subset=[\n", + " 'Pxscum_storm_mean_ratio',\n", + " 'prestorm_shoreline_pctile',\n", + " 'change_shoreline_pctile',\n", + " 'rel_change_shoreline_pctile'\n", + " ],\n", + " how='any')\n", + "\n", + "# Grid results\n", + "grid_x, grid_y = np.mgrid[0:2:100j, 0:100:100j]\n", + "\n", + "x_vals = gdf_transects.Pxscum_storm_mean_ratio.values\n", + "y_vals = gdf_transects.prestorm_shoreline_pctile.values\n", + "z_vals = gdf_transects.rel_change_shoreline_pctile.values\n", + "\n", + "points = [[x, y] for x, y in zip(\n", + " x_vals,\n", + " y_vals,\n", + ")]\n", + "\n", + "grid = griddata((x_vals,y_vals), z_vals, (grid_x, grid_y), method='cubic')\n", + "\n", + "# Smooth data\n", + "# https://stackoverflow.com/a/34370291\n", + "# grid = gaussian_filter(grid, sigma=0.5)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def round_down(num, divisor):\n", + " return num - (num%divisor)\n", + "\n", + "def round_up(x, divisor): \n", + " return (x + divisor - 1) // divisor * divisor" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "gdf_transects[gdf_transects.prestorm_shoreline_pctile<40].sort_values(by='change_shoreline_pctile',ascending=True).head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Plot peak wave energy pctile vs prestorm shoreline percentile vs change in shoreline percentile\n", + "\n", + "x_col = 'Pxscum_storm_mean_ratio'\n", + "y_col = 'prestorm_shoreline_pctile'\n", + "# z_col = 'rel_change_shoreline_pctile'\n", + "z_col = 'change_shoreline_pctile'\n", + "\n", + "# Drop nans\n", + "gdf_transects = gdf_transects.dropna(axis='index',\n", + " subset=[x_col, y_col,z_col\n", + " ],\n", + " how='any')\n", + "\n", + "# Grid results\n", + "grid_x, grid_y = np.mgrid[0:25:100j, 0:100:100j]\n", + "\n", + "x_vals = gdf_transects[x_col].values\n", + "y_vals = gdf_transects[y_col].values\n", + "z_vals = gdf_transects[z_col].values\n", + "\n", + "grid = griddata((x_vals,y_vals), z_vals, (grid_x, grid_y), method='linear',rescale=True)\n", + "\n", + "# Smooth data\n", + "# https://stackoverflow.com/a/34370291\n", + "# grid = gaussian_filter(grid, sigma=0.5)\n", + "\n", + "\n", + "# # 2D Spline interpolation\n", + "# s = SmoothBivariateSpline(x_vals, y_vals,z_vals)\n", + "# spline_x = np.arange(1,25,0.1)\n", + "# spline_y = np.arange(0,100,0.5)\n", + "# spline_z = s(spline_x, spline_y,grid=True)\n", + "# spline_grid_x, spline_grid_y = np.meshgrid(spline_x, spline_y)\n", + "\n", + "\n", + "# Create figure\n", + "fig = plt.figure(figsize=(3, 3), dpi=150, facecolor='w', edgecolor='k')\n", + "ax = fig.add_subplot(111)\n", + "\n", + "# Define colors\n", + "cmap_interval = 25\n", + "cmap = cc.cm.fire\n", + "vmin = round_down(np.min(z_vals), cmap_interval)\n", + "vmax = round_up(np.max(z_vals), cmap_interval)\n", + "levels = [x*cmap_interval for x in range(-4,2)]\n", + "\n", + "\n", + "# Plot SPLINE grid surface\n", + "# cf = ax.contourf(spline_grid_x, spline_grid_y, spline_z.T,levels=levels, cmap=cmap,vmin=vmin,vmax=vmax)\n", + "\n", + "# Plot SPLINE contours\n", + "# cs = plt.contour(grid_x, grid_y,grid,levels=levels,linewidths=0.5,colors='white', vmin=vmin,vmax=vmax)\n", + "# ax.clabel(cs, inline=1, fontsize=4, fmt='%1.0f%%')\n", + "\n", + "\n", + "# Plot CUBIC FIT grid surface\n", + "cf = plt.contourf(grid_x, grid_y,grid,levels=levels, cmap=cmap,vmin=vmin,vmax=vmax)\n", + "\n", + "# Plot CUBIC FIT contours\n", + "cs = plt.contour(grid_x, grid_y,grid,levels=levels,linewidths=0.5,colors='white', vmin=vmin,vmax=vmax)\n", + "ax.clabel(cs, inline=1, fontsize=4, fmt='%1.0f%%')\n", + "\n", + "\n", + "scatter = ax.scatter(\n", + " x=x_vals,\n", + " y=y_vals,\n", + " c=z_vals,\n", + " s=1,\n", + " cmap=cmap,vmin=vmin,vmax=vmax\n", + ")\n", + "\n", + "ax.set_xlim([1,25])\n", + "\n", + "ax.set_xlabel(x_col)\n", + "ax.set_ylabel(y_col)\n", + "\n", + "cbar = plt.colorbar(cf)\n", + "cbar.set_label(z_col)\n", + "\n", + "ax.grid(True, linestyle=\"--\", alpha=0.2, color='grey', linewidth=1)\n", + "\n", + "plt.show()\n", + "\n", + "fig.savefig('14_beach_state_vs_wave_energy_{}'.format(z_col),dpi=600,bbox_inches = \"tight\", pad_inches=0.01)" + ] + } + ], + "metadata": { + "hide_input": false, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + }, + "toc": { + "base_numbering": 1, + "nav_menu": {}, + "number_sections": true, + "sideBar": true, + "skip_h1_title": false, + "title_cell": "Table of Contents", + "title_sidebar": "Contents", + "toc_cell": false, + "toc_position": { + "height": "calc(100% - 180px)", + "left": "10px", + "top": "150px", + "width": "297.797px" + }, + "toc_section_display": true, + "toc_window_display": true + }, + "varInspector": { + "cols": { + "lenName": 16, + "lenType": 16, + "lenVar": 40 + }, + "kernels_config": { + "python": { + "delete_cmd_postfix": "", + "delete_cmd_prefix": "del ", + "library": "var_list.py", + "varRefreshCmd": "print(var_dic_list())" + }, + "r": { + "delete_cmd_postfix": ") ", + "delete_cmd_prefix": "rm(", + "library": "var_list.r", + "varRefreshCmd": "cat(var_dic_list()) " + } + }, + "types_to_exclude": [ + "module", + "function", + "builtin_function_or_method", + "instance", + "_Feature" + ], + "window_display": false + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/notebooks/14_transects_Australia.geojson b/notebooks/14_transects_Australia.geojson new file mode 100644 index 0000000..b637a2b --- /dev/null +++ b/notebooks/14_transects_Australia.geojson @@ -0,0 +1,176 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "name": "Dee Why Beach", "id": "way4042355", "orientation": 117.8, "beach_length": 1367.6787658900539 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.297426209301022, -33.749879728713736 ], [ 151.303385953876585, -33.752492350405944 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5757445", "orientation": 143.1, "beach_length": 7266.5228394129863 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.688273909621756, -35.014570881874867 ], [ 150.692319159611543, -35.018983377256809 ] ] } }, +{ "type": "Feature", "properties": { "name": "Currarong Beach", "id": "way5953437", "orientation": 11.8, "beach_length": 1164.4552080889939 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.816619637270946, -35.016318170650749 ], [ 150.817997401737813, -35.010916773154712 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way5953443", "orientation": 69.5, "beach_length": 4390.1973527327182 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.764949528081843, -34.922137344927066 ], [ 150.771260230160465, -34.920202716150072 ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Beach", "id": "way5954873", "orientation": 112.2, "beach_length": 20574.535884866931 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.75586860673252, -34.827258822743808 ], [ 150.762106534463413, -34.829348464229902 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way7451332", "orientation": 129.4, "beach_length": 1603.4355113199163 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.729218741295767, -32.972437522611465 ], [ 151.734424929142961, -32.976025069724002 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nobbys Beach", "id": "way7487200", "orientation": 133.2, "beach_length": 1421.6256822067976 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.794836683328242, -32.920272132548867 ], [ 151.799748010775659, -32.924143524568301 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pebbly Beach", "id": "way12591715", "orientation": 142.5, "beach_length": 1009.719676912916 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.326250780857038, -35.608170015695841 ], [ 150.330352228577539, -35.612515567552236 ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Reef Beach", "id": "way13858409", "orientation": 155.6, "beach_length": 1471.3219055229181 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.308732365126104, -33.742496010220343 ], [ 151.311515600300481, -33.747597876386187 ] ] } }, +{ "type": "Feature", "properties": { "name": "Mona Vale Beach", "id": "way13858412", "orientation": 116.4, "beach_length": 1338.8494987369897 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.310415712181566, -33.682410890665786 ], [ 151.31645044891448, -33.684903624108799 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Narrabeen Beach", "id": "way14040821", "orientation": 116.3, "beach_length": 1494.2626149369187 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.302693891096908, -33.70727706277372 ], [ 151.308733847065042, -33.709760309505015 ] ] } }, +{ "type": "Feature", "properties": { "name": "Narrabeen Beach", "id": "way14040977", "orientation": 100.8, "beach_length": 1373.2055690473667 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.298426776423128, -33.717344730525362 ], [ 151.305044803803554, -33.718394817682203 ] ] } }, +{ "type": "Feature", "properties": { "name": "Collaroy Beach", "id": "way14041013", "orientation": 71.2, "beach_length": 1661.418374661537 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.299027248983037, -33.728910506530326 ], [ 151.30540517022601, -33.727104738954885 ] ] } }, +{ "type": "Feature", "properties": { "name": "Newport Beach", "id": "way14041635", "orientation": 95.4, "beach_length": 1427.2517323683933 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.321643394091922, -33.653983190352847 ], [ 151.328350858060105, -33.654510964979941 ] ] } }, +{ "type": "Feature", "properties": { "name": "Garie Beach", "id": "way23140813", "orientation": 143.0, "beach_length": 1288.4252068564786 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.06759399349653, -34.169448561443176 ], [ 151.071648640747895, -34.173900327402919 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way25005079", "orientation": 129.1, "beach_length": 2025.6498496395332 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.426597886628542, -33.493461222834767 ], [ 151.431826394243473, -33.497004676254477 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fingal Beach", "id": "way28969442", "orientation": 126.4, "beach_length": 1780.5075815647056 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.170819933303505, -32.742104345084726 ], [ 152.176242796305473, -32.745467120413899 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way30978532", "orientation": 91.0, "beach_length": 27866.970405937809 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.416889214109915, -27.219547910447488 ], [ 153.423625552607518, -27.219652472501451 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way30978533", "orientation": 106.5, "beach_length": 9949.6233025637666 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.449802428748541, -27.074975863105792 ], [ 153.45626234691764, -27.076679666207621 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way31000898", "orientation": 107.1, "beach_length": 31524.504786492536 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.489726460582915, -27.551922865831692 ], [ 153.496165986635276, -27.553679241015541 ] ] } }, +{ "type": "Feature", "properties": { "name": "Werri Beach", "id": "way37890458", "orientation": 109.9, "beach_length": 2529.5719540259611 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.833054662544583, -34.73513954960935 ], [ 150.839389726514355, -34.737024118079752 ] ] } }, +{ "type": "Feature", "properties": { "name": "Murramarang Beach", "id": "way38144058", "orientation": 66.5, "beach_length": 1274.9971066031389 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.400692945942467, -35.523329416877623 ], [ 150.406871514052028, -35.521142886604814 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way38145816", "orientation": 150.6, "beach_length": 3574.9449970357891 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.572125558604938, -35.19167332543941 ], [ 150.575432956191719, -35.1964700587423 ] ] } }, +{ "type": "Feature", "properties": { "name": "Curl Curl Beach", "id": "way41740993", "orientation": 127.2, "beach_length": 1438.5285128735152 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.294465322293036, -33.768981301790767 ], [ 151.299831834790211, -33.772367397196469 ] ] } }, +{ "type": "Feature", "properties": { "name": "Terrigal Beach", "id": "way54609773", "orientation": 124.5, "beach_length": 4017.1932249514589 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.447616400405025, -33.428842988601993 ], [ 151.453168839039648, -33.432027722974048 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelly Beach", "id": "way54609778", "orientation": 121.9, "beach_length": 3050.9077716642514 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.488212799687375, -33.370587687036029 ], [ 151.493932631508244, -33.373560935520118 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Avoca Beach", "id": "way54667480", "orientation": 123.9, "beach_length": 1035.2939738578305 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.437043809557593, -33.459692013650027 ], [ 151.442635904970388, -33.462826934868581 ] ] } }, +{ "type": "Feature", "properties": { "name": "Avoca Beach", "id": "way54669965", "orientation": 83.6, "beach_length": 1104.9091210534039 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.433667144832867, -33.467661343336587 ], [ 151.440362521662735, -33.467034853259669 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way54680278", "orientation": 129.4, "beach_length": 3136.0127011669574 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.119879943007049, -32.769000081845114 ], [ 152.125086130854243, -32.772595870258733 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way55486822", "orientation": 132.7, "beach_length": 1104.4302797352184 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.988772086251771, -34.229364098107446 ], [ 150.993723473851873, -34.233141635265319 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way55889024", "orientation": 81.5, "beach_length": 1232.6737616867676 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.872006675532447, -34.58628581273998 ], [ 150.878670036029661, -34.585465956389292 ] ] } }, +{ "type": "Feature", "properties": { "name": "Long Beach", "id": "way77993576", "orientation": 162.4, "beach_length": 2803.7250094349192 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.223220089980771, -35.702454079182424 ], [ 150.22525726618818, -35.707668942903908 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bherwerre Beach", "id": "way78271876", "orientation": 160.9, "beach_length": 8449.8285415778719 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.625636911751968, -35.166840954141129 ], [ 150.62784149805114, -35.172045235294341 ] ] } }, +{ "type": "Feature", "properties": { "name": "Towradgi Beach", "id": "way78388644", "orientation": 113.9, "beach_length": 3490.7143043811325 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.904518090155705, -34.395944048215512 ], [ 150.910677752417371, -34.39819634581459 ] ] } }, +{ "type": "Feature", "properties": { "name": "Greenhills Beach", "id": "way86379306", "orientation": 154.9, "beach_length": 1429.709869940998 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.171313877866794, -34.036110676981444 ], [ 151.174171864054045, -34.041166455329495 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bombo Beach", "id": "way87849653", "orientation": 102.7, "beach_length": 1687.8658370549799 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.85306294036414, -34.65870796445229 ], [ 150.859635472296731, -34.659926309498161 ] ] } }, +{ "type": "Feature", "properties": { "name": "Jones beach", "id": "way87849657", "orientation": 100.9, "beach_length": 1267.3743657941834 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.85355202581303, -34.639271225925022 ], [ 150.860167839712972, -34.640319403010693 ] ] } }, +{ "type": "Feature", "properties": { "name": "Manyana Beach", "id": "way93288569", "orientation": 126.6, "beach_length": 1265.8364782053784 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.514262690688838, -35.261694144827743 ], [ 150.519671564751263, -35.264974041569936 ] ] } }, +{ "type": "Feature", "properties": { "name": "Inyadda Beach", "id": "way93288573", "orientation": 145.1, "beach_length": 1942.857515375455 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.53092366649139, -35.250734160332513 ], [ 150.534778421862882, -35.255246479286811 ] ] } }, +{ "type": "Feature", "properties": { "name": "Berrara Beach", "id": "way93288644", "orientation": 131.0, "beach_length": 1579.9830572842293 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.541223871887212, -35.213278350672283 ], [ 150.5463086255196, -35.216889549211594 ] ] } }, +{ "type": "Feature", "properties": { "name": "Mystics", "id": "way95039342", "orientation": 71.6, "beach_length": 1991.0695681795767 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.854936238195023, -34.621731961966979 ], [ 150.861329161875005, -34.619981884762197 ] ] } }, +{ "type": "Feature", "properties": { "name": "mollymook Sea beach", "id": "way95783344", "orientation": 106.3, "beach_length": 3036.5051584484122 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.473685638356073, -35.331300579853242 ], [ 150.480152196582765, -35.332843246565965 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95783345", "orientation": 99.7, "beach_length": 1927.0868091013078 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.470428905438524, -35.310528010692501 ], [ 150.477069949127696, -35.311454343327576 ] ] } }, +{ "type": "Feature", "properties": { "name": "Conjola Beach", "id": "way95783351", "orientation": 137.4, "beach_length": 4306.8063800566279 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.491096091453329, -35.277269304505388 ], [ 150.495656451670982, -35.281317855539413 ] ] } }, +{ "type": "Feature", "properties": { "name": "Monument Beach", "id": "way95783352", "orientation": 119.2, "beach_length": 1072.0866326632313 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.530556492244102, -35.227820112586109 ], [ 150.536437686573038, -35.230505011981634 ] ] } }, +{ "type": "Feature", "properties": { "name": "Burrill Beach", "id": "way95783353", "orientation": 133.6, "beach_length": 1286.446905199022 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.452706601041683, -35.387695041636611 ], [ 150.457585610927623, -35.391482792332773 ] ] } }, +{ "type": "Feature", "properties": { "name": "Racecourse Beach", "id": "way95783354", "orientation": 128.8, "beach_length": 1596.7646423799629 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.461154139235646, -35.379007442639015 ], [ 150.466404823276093, -35.382449456071562 ] ] } }, +{ "type": "Feature", "properties": { "name": "Turmeil Beach", "id": "way95783355", "orientation": 102.1, "beach_length": 1955.8102034852254 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.389695625072335, -35.468052014337133 ], [ 150.396283307268362, -35.469202219596916 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wairo Beach", "id": "way95783357", "orientation": 126.5, "beach_length": 6076.6508842274216 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.419104180875422, -35.42288519949318 ], [ 150.424520057656451, -35.426150861400252 ] ] } }, +{ "type": "Feature", "properties": { "name": "Buckley's Beach", "id": "way95783362", "orientation": 108.6, "beach_length": 1639.2461082610259 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.474209662923386, -35.296434667863565 ], [ 150.480595124287277, -35.29818856105905 ] ] } }, +{ "type": "Feature", "properties": { "name": "Woonona Beach", "id": "way95786684", "orientation": 101.2, "beach_length": 1533.3014801414317 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.917936878559942, -34.352650552061306 ], [ 150.92454593112808, -34.353730922053344 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way95786688", "orientation": 128.4, "beach_length": 1777.0098733519792 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.917913801592391, -34.378596883231367 ], [ 150.923193830173261, -34.382050711696237 ] ] } }, +{ "type": "Feature", "properties": { "name": "Thirroul Beach", "id": "way95786690", "orientation": 121.3, "beach_length": 1146.3923780647244 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.927324604641882, -34.314707974364282 ], [ 150.933081405342563, -34.317598918887732 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bulli Beach", "id": "way95786693", "orientation": 110.0, "beach_length": 1137.4537692982917 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.921885521804398, -34.342371884249602 ], [ 150.928216573631602, -34.344274492046054 ] ] } }, +{ "type": "Feature", "properties": { "name": "McCauleys Beach", "id": "way95786716", "orientation": 90.3, "beach_length": 1195.787102761587 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.922697670004027, -34.325167095777559 ], [ 150.929434942280807, -34.325196228974804 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way100421203", "orientation": 105.8, "beach_length": 3372.8094924808279 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.900497590727099, -34.433679306094753 ], [ 150.906980404203892, -34.435192313457918 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way104748689", "orientation": 121.2, "beach_length": 8172.9490380456255 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.88336709945861, -34.513386224405068 ], [ 150.889130000371551, -34.516262026022645 ] ] } }, +{ "type": "Feature", "properties": { "name": "Racecourse Beach", "id": "way109973381", "orientation": 124.5, "beach_length": 1591.3190450316545 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.390997637206112, -35.535433026785185 ], [ 150.396550075840736, -35.538538329953681 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nine Mile Beach", "id": "way133342568", "orientation": 109.2, "beach_length": 14293.895488916563 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.509906010523565, -32.120017022573229 ], [ 152.516268618478648, -32.121893555214456 ] ] } }, +{ "type": "Feature", "properties": { "name": "One Mile Beach", "id": "way134627391", "orientation": 83.5, "beach_length": 1587.5752698474448 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.534435943097009, -32.19040419356476 ], [ 152.541129998975663, -32.189758739028534 ] ] } }, +{ "type": "Feature", "properties": { "name": "Lighthouse Beach", "id": "way159040990", "orientation": 160.3, "beach_length": 2188.4790477193133 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.52755624748616, -32.44265404793714 ], [ 152.529827381157503, -32.448006954924764 ] ] } }, +{ "type": "Feature", "properties": { "name": "Forrester's beach", "id": "way159095198", "orientation": 136.5, "beach_length": 1873.0872243549609 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.46551114701694, -33.410090887477729 ], [ 151.470148842788717, -33.414170312508581 ] ] } }, +{ "type": "Feature", "properties": { "name": "Lighthouse Beach", "id": "way173070325", "orientation": 127.9, "beach_length": 18557.898178721829 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.878255590261972, -31.52595483907065 ], [ 152.883571937465945, -31.529482583127681 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bondi Beach", "id": "way173244595", "orientation": 155.5, "beach_length": 1157.8171737499761 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.276852978827577, -33.890229978666355 ], [ 151.279646918413306, -33.895319000087184 ] ] } }, +{ "type": "Feature", "properties": { "name": "Treachery Beach", "id": "way182614828", "orientation": 161.0, "beach_length": 2256.0227991927118 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.508033818036949, -32.452672005068422 ], [ 152.510227289405776, -32.458047329581028 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way182621183", "orientation": 49.4, "beach_length": 1407.2757678250591 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.518988562089731, -32.430655695383784 ], [ 152.524104049741027, -32.426954918488342 ] ] } }, +{ "type": "Feature", "properties": { "name": "Gap Beach", "id": "way189322079", "orientation": 88.1, "beach_length": 1081.631611844778 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.079203669747642, -30.903108127704439 ], [ 153.08593733028286, -30.902916460461707 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189326452", "orientation": 85.5, "beach_length": 4082.4382816626189 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.962444578523389, -31.300519519577751 ], [ 152.969161174107597, -31.300067847608144 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way189326453", "orientation": 104.9, "beach_length": 7522.1080741998449 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.961455195228041, -31.221414334816714 ], [ 152.967966023244998, -31.222895818497459 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Shore Beach", "id": "way189407637", "orientation": 115.3, "beach_length": 14990.004608269586 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.930721702813173, -31.36849654051866 ], [ 152.936812836606663, -31.370954932399229 ] ] } }, +{ "type": "Feature", "properties": { "name": "minnie Water Back Beach", "id": "way189511968", "orientation": 108.7, "beach_length": 3400.9642340079649 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.287920046443048, -29.793801709778041 ], [ 153.294301747466392, -29.795676256889305 ] ] } }, +{ "type": "Feature", "properties": { "name": "Hyland Park Beach", "id": "way189940675", "orientation": 87.4, "beach_length": 3513.1309001894724 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.008425950330434, -30.613595802509401 ], [ 153.015156379314647, -30.613332773080192 ] ] } }, +{ "type": "Feature", "properties": { "name": "Killick Beach", "id": "way190929758", "orientation": 121.5, "beach_length": 16792.206309969777 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.000639688093969, -31.128367126991147 ], [ 153.006384235780189, -31.131380464144375 ] ] } }, +{ "type": "Feature", "properties": { "name": "Tallow Beach", "id": "way191324197", "orientation": 108.8, "beach_length": 7471.6596449413955 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.620095345273228, -28.668157592473477 ], [ 153.626473266516172, -28.670062632938784 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fiona Beach", "id": "way192040645", "orientation": 156.8, "beach_length": 10844.393389875697 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.449758896197949, -32.468983496034681 ], [ 152.452413026486255, -32.474207888506783 ] ] } }, +{ "type": "Feature", "properties": { "name": "Black Head Beach", "id": "way192060355", "orientation": 99.3, "beach_length": 1728.0323893188813 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.541791477197393, -32.064615722434894 ], [ 152.548440283996911, -32.065538407601309 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way197880327", "orientation": 86.2, "beach_length": 1180.6458185008732 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.052890320666677, -36.492283185563338 ], [ 150.059612872987799, -36.49192421768501 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way197880338", "orientation": 57.5, "beach_length": 1375.8986285786966 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.066808158511378, -36.421051519025809 ], [ 150.072490394208387, -36.418138551698206 ] ] } }, +{ "type": "Feature", "properties": { "name": "Baragoot Beach", "id": "way197880340", "orientation": 112.6, "beach_length": 3798.3301609793943 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.058344540531692, -36.472792043473511 ], [ 150.064564544395353, -36.474874042724238 ] ] } }, +{ "type": "Feature", "properties": { "name": "Blueys Beach", "id": "way222144734", "orientation": 126.8, "beach_length": 1164.8691470618292 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.53569772120116, -32.351457297001396 ], [ 152.541092540418646, -32.354866636424404 ] ] } }, +{ "type": "Feature", "properties": { "name": "Boomerang Beach", "id": "way222145626", "orientation": 119.6, "beach_length": 1694.4202609719857 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.541804963908675, -32.339767659869565 ], [ 152.547663068293502, -32.342579299773398 ] ] } }, +{ "type": "Feature", "properties": { "name": "Sandbar Beach", "id": "way222267320", "orientation": 114.5, "beach_length": 3451.260473267856 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.520034124508214, -32.388714057241145 ], [ 152.526164865390115, -32.391073322483898 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way222390016", "orientation": 110.7, "beach_length": 11554.002303613363 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.528985590011047, -32.268921293411289 ], [ 152.535288017538591, -32.270934942720324 ] ] } }, +{ "type": "Feature", "properties": { "name": "Old Bar Beach", "id": "way224198013", "orientation": 135.6, "beach_length": 13321.86971687392 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.645502295395801, -31.909877497319457 ], [ 152.650216182439721, -31.91396363156792 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pippi Beach", "id": "way226380327", "orientation": 114.9, "beach_length": 2093.2915651251469 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.363939285464653, -29.444978137816115 ], [ 153.370050371725199, -29.447448361479612 ] ] } }, +{ "type": "Feature", "properties": { "name": "Nelsons Beach", "id": "way230385239", "orientation": 116.6, "beach_length": 1293.1567245991507 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.692601124420293, -35.074497160024031 ], [ 150.698625367550136, -35.076966020068063 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wanda Beach", "id": "way253258718", "orientation": 132.4, "beach_length": 1060.2608924073777 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.162102441399753, -34.041487964454262 ], [ 151.16707768429319, -34.045252375542432 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way303942662", "orientation": 99.5, "beach_length": 2762.1546538324255 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.028039902935916, -30.512880275794156 ], [ 153.034684868663675, -30.513838263655757 ] ] } }, +{ "type": "Feature", "properties": { "name": "Belongil Beach", "id": "way306312031", "orientation": 52.2, "beach_length": 8141.3112283828377 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.584817232086579, -28.619517676145943 ], [ 153.590140794519868, -28.615892763297513 ] ] } }, +{ "type": "Feature", "properties": { "name": "Rosedale Beach", "id": "way307144510", "orientation": 82.5, "beach_length": 1165.3429096205248 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.22424175613682, -35.814033256814547 ], [ 150.230921481679331, -35.81332012803567 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way307145569", "orientation": 124.0, "beach_length": 1161.7524386962018 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.184625773494815, -35.832802090307361 ], [ 150.19021130191382, -35.835856441300486 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Broulee Beach", "id": "way307146328", "orientation": 78.5, "beach_length": 2586.1859082861752 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.17610432066931, -35.851149084440259 ], [ 150.182706430715172, -35.850060346173386 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bengello Beach", "id": "way307149092", "orientation": 114.5, "beach_length": 7504.7002482403259 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.153612670538081, -35.87796575013369 ], [ 150.159743411419981, -35.88022955506014 ] ] } }, +{ "type": "Feature", "properties": { "name": "Murrays Beach", "id": "way310196798", "orientation": 117.1, "beach_length": 1103.5523309805026 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.104568382584773, -30.36079172594734 ], [ 153.110566070848535, -30.363439955215096 ] ] } }, +{ "type": "Feature", "properties": { "name": "Sawtell Main Beach", "id": "way310196987", "orientation": 89.3, "beach_length": 1489.8880110251912 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.10139610757065, -30.370640708343696 ], [ 153.108132969389715, -30.370569693148227 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way317885375", "orientation": 108.5, "beach_length": 2691.2574178703148 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.867638260544226, -34.550898108893534 ], [ 150.874027462797471, -34.552658828545852 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wonboyn Beach", "id": "way331942614", "orientation": 121.9, "beach_length": 5220.5938607999415 }, "geometry": { "type": "LineString", "coordinates": [ [ 149.949107620675818, -37.264548086321227 ], [ 149.954827452496687, -37.26738147714029 ] ] } }, +{ "type": "Feature", "properties": { "name": "Mungo Beach", "id": "way345715960", "orientation": 135.7, "beach_length": 20333.423704402718 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.330376531181741, -32.528990937624144 ], [ 152.335082009623477, -32.533056269003325 ] ] } }, +{ "type": "Feature", "properties": { "name": "Maggies Beach", "id": "way363247956", "orientation": 89.7, "beach_length": 3326.2603702300262 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.572355514757646, -28.348615503975967 ], [ 153.579092787034426, -28.348584457927902 ] ] } }, +{ "type": "Feature", "properties": { "name": "Durras Beach", "id": "way369080492", "orientation": 166.0, "beach_length": 1984.6596123443278 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.313479270156165, -35.633341813967576 ], [ 150.315109186179001, -35.638654853629106 ] ] } }, +{ "type": "Feature", "properties": { "name": "Durras Beach", "id": "way369080493", "orientation": 114.4, "beach_length": 2943.0947142531068 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.296985945447489, -35.647239147736421 ], [ 150.30312155333371, -35.649500829782816 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way369096364", "orientation": 146.4, "beach_length": 1141.6980793948974 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.194808950406383, -35.701536213195205 ], [ 150.198537351057297, -35.706093159502608 ] ] } }, +{ "type": "Feature", "properties": { "name": "Middle Beach", "id": "way378122331", "orientation": 121.0, "beach_length": 1922.6746961684682 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.007885658320987, -36.649069667894786 ], [ 150.013660706975486, -36.651853620773231 ] ] } }, +{ "type": "Feature", "properties": { "name": "Gillard's Beach", "id": "way378122714", "orientation": 114.0, "beach_length": 2094.4092640085746 }, "geometry": { "type": "LineString", "coordinates": [ [ 149.999680965236621, -36.66151550000216 ], [ 150.005835854091657, -36.663713700440503 ] ] } }, +{ "type": "Feature", "properties": { "name": "Newtons Beach", "id": "way378241758", "orientation": 96.9, "beach_length": 2464.6005137677139 }, "geometry": { "type": "LineString", "coordinates": [ [ 149.948838840493693, -37.368150005961624 ], [ 149.95552740869627, -37.368793280099332 ] ] } }, +{ "type": "Feature", "properties": { "name": "Brou Beach", "id": "way379893070", "orientation": 97.9, "beach_length": 8153.2304828166261 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.123707370774383, -36.13300438403936 ], [ 150.130380794198572, -36.133752276027401 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bingie Beach", "id": "way380212327", "orientation": 109.5, "beach_length": 5003.7820816744024 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.144683962011328, -36.034019336769752 ], [ 150.151034881453029, -36.035837992412894 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bellambi Beach", "id": "way380544388", "orientation": 66.3, "beach_length": 1200.2978014331732 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.919155726067373, -34.363012740527012 ], [ 150.925324878837557, -34.360777259436915 ] ] } }, +{ "type": "Feature", "properties": { "name": "Crowdy Beach", "id": "way382435196", "orientation": 113.6, "beach_length": 14924.135725110977 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.7449755551186, -31.78988067777415 ], [ 152.751149424961852, -31.792173313703469 ] ] } }, +{ "type": "Feature", "properties": { "name": "Kylie's Beach", "id": "way382435198", "orientation": 129.9, "beach_length": 2246.9701416882372 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.790388118551334, -31.737718911209132 ], [ 152.795556789911245, -31.741394275911432 ] ] } }, +{ "type": "Feature", "properties": { "name": "Middle Beach", "id": "way383244210", "orientation": 92.1, "beach_length": 1851.546310777074 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.995274850847295, -30.770927446815428 ], [ 153.002007690622179, -30.771139572458786 ] ] } }, +{ "type": "Feature", "properties": { "name": "Grassy Beach", "id": "way383244211", "orientation": 82.5, "beach_length": 1925.165672768919 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.995263592122683, -30.786957434846368 ], [ 153.001943317665194, -30.786201957871473 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383406313", "orientation": 79.5, "beach_length": 1744.3495056482277 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.012156447242234, -30.632923190351136 ], [ 153.018780994079577, -30.631866735861752 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wooli Beach", "id": "way383421939", "orientation": 115.9, "beach_length": 4657.8222218240326 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.274285629804325, -29.843986469996882 ], [ 153.280346278567691, -29.846539054623989 ] ] } }, +{ "type": "Feature", "properties": { "name": "Jones Beach", "id": "way383425054", "orientation": 42.8, "beach_length": 1009.249355477669 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.269644689491315, -29.892583341463258 ], [ 153.274222333303413, -29.888297508101981 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383426042", "orientation": 97.9, "beach_length": 1888.1674259404499 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.265653317839536, -29.868307734576753 ], [ 153.272326741263754, -29.869110745098936 ] ] } }, +{ "type": "Feature", "properties": { "name": "South Terrace Beach", "id": "way383426043", "orientation": 83.4, "beach_length": 1586.8584308614954 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.264661382941171, -29.881769328339743 ], [ 153.271354097477456, -29.881097901425584 ] ] } }, +{ "type": "Feature", "properties": { "name": "Shelley Beach", "id": "way383957412", "orientation": 112.3, "beach_length": 2980.2934950329336 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.348055569761613, -29.53868296432687 ], [ 153.354289044994431, -29.540907183787219 ] ] } }, +{ "type": "Feature", "properties": { "name": "Plumbago Beach", "id": "way383957413", "orientation": 111.9, "beach_length": 2569.2015052608722 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.338765564169393, -29.559365693171785 ], [ 153.345016735329722, -29.561551550638629 ] ] } }, +{ "type": "Feature", "properties": { "name": "Little Shelley Beach", "id": "way383963164", "orientation": 93.8, "beach_length": 1342.2180551735103 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.355793752382255, -29.519645951743392 ], [ 153.362516304703405, -29.520034499351762 ] ] } }, +{ "type": "Feature", "properties": { "name": "Angourie Beach", "id": "way383966415", "orientation": 115.7, "beach_length": 2064.1673424809965 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.359553569320127, -29.48847920888787 ], [ 153.365624453773279, -29.491022401311739 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383975077", "orientation": 100.7, "beach_length": 3400.7434052670405 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.330416921066472, -29.586548854027352 ], [ 153.33703714176778, -29.587636647604317 ] ] } }, +{ "type": "Feature", "properties": { "name": "Main Beach", "id": "way383975083", "orientation": 50.6, "beach_length": 1679.2778386106322 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.334021876084876, -29.607369988880109 ], [ 153.33922806393204, -29.603651874464926 ] ] } }, +{ "type": "Feature", "properties": { "name": "Cowdroy's Beach", "id": "way384818393", "orientation": 105.8, "beach_length": 1628.4546064287781 }, "geometry": { "type": "LineString", "coordinates": [ [ 149.993405148499221, -36.67438201328843 ], [ 149.999887961976043, -36.675853307633389 ] ] } }, +{ "type": "Feature", "properties": { "name": "Barri Beach", "id": "way387687423", "orientation": 104.3, "beach_length": 1834.4547960472853 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.358600578934727, -29.460293199232954 ], [ 153.365129191250304, -29.461742134849143 ] ] } }, +{ "type": "Feature", "properties": { "name": "Warrain Beach", "id": "way392061792", "orientation": 73.3, "beach_length": 12744.474986398533 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.778929198509729, -34.97700120886693 ], [ 150.785382397909189, -34.975414826433735 ] ] } }, +{ "type": "Feature", "properties": { "name": "Broken Head Beach", "id": "way395502828", "orientation": 66.7, "beach_length": 1494.3866570127263 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.612700208323474, -28.703113501640605 ], [ 153.618888116488534, -28.700776008201203 ] ] } }, +{ "type": "Feature", "properties": { "name": "Wallabi Beach", "id": "way398697323", "orientation": 119.9, "beach_length": 1652.5524600985955 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.565894383302407, -32.000511472503632 ], [ 152.571734982797295, -32.003359576539971 ] ] } }, +{ "type": "Feature", "properties": { "name": "Saltwater Beach", "id": "way398859521", "orientation": 129.8, "beach_length": 2796.5816172543705 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.555005812839426, -32.016093257066153 ], [ 152.560182019077814, -32.019749878747241 ] ] } }, +{ "type": "Feature", "properties": { "name": "Diamond Beach", "id": "way400673679", "orientation": 100.8, "beach_length": 3628.4618027263687 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.541416452217334, -32.037841321306679 ], [ 152.548034479597789, -32.038911496585932 ] ] } }, +{ "type": "Feature", "properties": { "name": "Forster Beach", "id": "way450323845", "orientation": 98.1, "beach_length": 13147.88015272033 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.989502206606062, -30.698279238482932 ], [ 152.996172356981305, -30.699095509906883 ] ] } }, +{ "type": "Feature", "properties": { "name": "South Kingscliff Beach", "id": "way477089973", "orientation": 101.7, "beach_length": 4203.5437019182154 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.580143313377306, -28.272071885866115 ], [ 153.58674069450737, -28.273275148555147 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bogangar Beach", "id": "way477198650", "orientation": 92.3, "beach_length": 1449.7460371951504 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.570111445218203, -28.323258051115097 ], [ 153.576843382195221, -28.323496064480167 ] ] } }, +{ "type": "Feature", "properties": { "name": "Casuarina Beach", "id": "way477198652", "orientation": 99.5, "beach_length": 3821.7978986879175 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.572970562311127, -28.302797638905098 ], [ 153.579615528038886, -28.303776687062488 ] ] } }, +{ "type": "Feature", "properties": { "name": "Park Beach", "id": "way506150317", "orientation": 98.6, "beach_length": 2246.6670041287475 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.138021268576523, -30.288371722558704 ], [ 153.144682880846744, -30.289241670527939 ] ] } }, +{ "type": "Feature", "properties": { "name": "Moruya Heads Beach", "id": "way561980537", "orientation": 86.1, "beach_length": 3082.6172105517958 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.155081677619819, -35.922289409723518 ], [ 150.161803440392845, -35.921918316841641 ] ] } }, +{ "type": "Feature", "properties": { "name": "Pedro Beach", "id": "way562090488", "orientation": 90.4, "beach_length": 3006.79413295329 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.153541243669679, -35.944080647570594 ], [ 150.160278444115789, -35.944118726879765 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way584741088", "orientation": 79.0, "beach_length": 6848.4922804323187 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.558994945717757, -28.565150014001521 ], [ 153.565608525984231, -28.564020943031426 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way594795760", "orientation": 56.7, "beach_length": 1274.3702762914984 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.47230415616994, -28.120590640740772 ], [ 153.477935295124695, -28.117328259348785 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Beach", "id": "way614055418", "orientation": 89.8, "beach_length": 1199.859909578041 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.866651391051846, -34.569558648783961 ], [ 150.873388714636405, -34.5695392833398 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606753", "orientation": 83.1, "beach_length": 1059.6770018698264 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.130182206375309, -36.206410368832543 ], [ 150.136870774577886, -36.205757261328436 ] ] } }, +{ "type": "Feature", "properties": { "name": "Haywards Beach", "id": "way664606754", "orientation": 107.4, "beach_length": 5332.0491423246485 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.066518609255041, -36.394044999198101 ], [ 150.072947674293772, -36.395666763781968 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664606765", "orientation": 122.6, "beach_length": 3772.0435881595317 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.135725762944929, -36.275995490791587 ], [ 150.141401671927724, -36.278921771233478 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "way664713177", "orientation": 69.5, "beach_length": 1088.4824703652382 }, "geometry": { "type": "LineString", "coordinates": [ [ 150.132623945658793, -36.091488510007352 ], [ 150.138934647737358, -36.089581848595152 ] ] } }, +{ "type": "Feature", "properties": { "name": "Maroubra Beach", "id": "relation2251446", "orientation": 92.3, "beach_length": 1304.7786949436613 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.255225107515685, -33.949647248967025 ], [ 151.261957044492732, -33.949871538726846 ] ] } }, +{ "type": "Feature", "properties": { "name": "North Entrance Beach", "id": "relation2303044", "orientation": 137.0, "beach_length": 9900.7078833312644 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.524384869207324, -33.313435454839677 ], [ 151.528979740836718, -33.31755307743564 ] ] } }, +{ "type": "Feature", "properties": { "name": "Seven Mile Beach", "id": "relation2580527", "orientation": 101.9, "beach_length": 9795.7333395711594 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.597650977776965, -28.763556961476439 ], [ 153.604243549604206, -28.764774808848394 ] ] } }, +{ "type": "Feature", "properties": { "name": "Seventy Five Mile Beach", "id": "relation2611157", "orientation": 109.8, "beach_length": 104340.30115250713 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.175701667463983, -25.394744299356859 ], [ 153.182040724278636, -25.396805964137293 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation2723197", "orientation": 99.4, "beach_length": 3817.6368266284194 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.833201610246448, -31.621366879809862 ], [ 152.839848506633871, -31.622303888877077 ] ] } }, +{ "type": "Feature", "properties": { "name": "Burwood Beach", "id": "relation2874470", "orientation": 132.6, "beach_length": 1740.965507343255 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.739813879778922, -32.959293379850727 ], [ 151.744773234258588, -32.963119700548077 ] ] } }, +{ "type": "Feature", "properties": { "name": "Palm Beach", "id": "relation2978551", "orientation": 98.7, "beach_length": 2771.560782507047 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.323728294761452, -33.590944774061647 ], [ 151.330388138512319, -33.591793688458139 ] ] } }, +{ "type": "Feature", "properties": { "name": "Fishermans Beach", "id": "relation3359340", "orientation": 54.7, "beach_length": 1102.4177924785465 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.304926647932973, -33.738182783520628 ], [ 151.310425264466318, -33.734945167696978 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation3429622", "orientation": 100.0, "beach_length": 1491.3424905260258 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.499150446483497, -33.357989048245138 ], [ 151.505785455406851, -33.358966229185413 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation3433510", "orientation": 112.4, "beach_length": 11802.823651619099 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.206015285788453, -30.020201713319093 ], [ 153.212244289534908, -30.022424677992785 ] ] } }, +{ "type": "Feature", "properties": { "name": "Safety Beach", "id": "relation3903790", "orientation": 92.9, "beach_length": 1337.5116588251049 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.198295596874715, -30.089175916493701 ], [ 153.205024333348007, -30.089470846525359 ] ] } }, +{ "type": "Feature", "properties": { "name": "Woolgoolga Beach", "id": "relation3906007", "orientation": 63.7, "beach_length": 1582.8092428572195 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.198088813490756, -30.106416729330963 ], [ 153.20412876945889, -30.10383427192788 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5141614", "orientation": 100.3, "beach_length": 19300.646943814729 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.040794241999237, -30.988061743377703 ], [ 153.047423034254706, -30.989094458534261 ] ] } }, +{ "type": "Feature", "properties": { "name": "Boambee Beach", "id": "relation5206367", "orientation": 124.8, "beach_length": 6957.6457413516446 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.118093971968221, -30.33072027520112 ], [ 153.123626353606511, -30.334039025235214 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5374363", "orientation": 120.2, "beach_length": 35839.673826800223 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.485185922621667, -28.984732247121318 ], [ 153.491008857103736, -28.987696753726748 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5403455", "orientation": 107.4, "beach_length": 3467.7786659012691 }, "geometry": { "type": "LineString", "coordinates": [ [ 153.571344835025997, -28.374362035021626 ], [ 153.577773900064699, -28.37613471802031 ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdie Beach", "id": "relation5610370", "orientation": 141.0, "beach_length": 1786.9807326381458 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.605942741343654, -33.204047496782778 ], [ 151.610182702287801, -33.2084284120345 ] ] } }, +{ "type": "Feature", "properties": { "name": "Birdie Beach", "id": "relation5610374", "orientation": 122.0, "beach_length": 9329.2708899211502 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.571638528455793, -33.233911939456952 ], [ 151.577352137704139, -33.236898196437302 ] ] } }, +{ "type": "Feature", "properties": { "name": "Moonee Beach", "id": "relation5614833", "orientation": 85.2, "beach_length": 1414.8674396814627 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.629334061854081, -33.170133845309714 ], [ 151.636047797598934, -33.16966194212808 ] ] } }, +{ "type": "Feature", "properties": { "name": "Catherine Hill Bay Beach", "id": "relation5614835", "orientation": 114.4, "beach_length": 2223.576899805525 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.629636403814999, -33.150707397544664 ], [ 151.635772011701221, -33.153037588724935 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation5622499", "orientation": 126.3, "beach_length": 3544.1909415687978 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.652586518417479, -33.099743272054873 ], [ 151.658016351121375, -33.103084550421912 ] ] } }, +{ "type": "Feature", "properties": { "name": "Stockton Beach", "id": "relation5632945", "orientation": 154.4, "beach_length": 39038.19328012778 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.914889658623906, -32.82458287310245 ], [ 151.917800777865409, -32.829688574995842 ] ] } }, +{ "type": "Feature", "properties": { "name": "Bennetts Beach", "id": "relation6158652", "orientation": 125.3, "beach_length": 17070.736099033849 }, "geometry": { "type": "LineString", "coordinates": [ [ 152.204507339562895, -32.634999855045457 ], [ 152.210005956096239, -32.638278380319974 ] ] } }, +{ "type": "Feature", "properties": { "name": "Soldiers Beach", "id": "relation7491177", "orientation": 128.9, "beach_length": 1341.891275117024 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.562510072353433, -33.290767981140093 ], [ 151.567753380216516, -33.294304430933003 ] ] } }, +{ "type": "Feature", "properties": { "name": "Putty Beach", "id": "relation7966651", "orientation": 162.2, "beach_length": 2032.480907416342 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.365952074280472, -33.528593310798257 ], [ 151.368011655015948, -33.533940624398603 ] ] } }, +{ "type": "Feature", "properties": { "name": "noname", "id": "relation8302312", "orientation": 129.6, "beach_length": 12508.032082382493 }, "geometry": { "type": "LineString", "coordinates": [ [ 151.67716704962902, -33.041776618031669 ], [ 151.682358278298523, -33.045376557328964 ] ] } } +] +} diff --git a/notebooks/15_shoreline_positions_vs_wave_energy_v2.ipynb b/notebooks/15_shoreline_positions_vs_wave_energy_v2.ipynb new file mode 100644 index 0000000..e56cdf7 --- /dev/null +++ b/notebooks/15_shoreline_positions_vs_wave_energy_v2.ipynb @@ -0,0 +1,656 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Setup notebook" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import datetime\n", + "import pickle\n", + "import fiona\n", + "import shapely\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import geopandas\n", + "from scipy.stats import percentileofscore\n", + "from shapely.geometry import Point, MultiPoint\n", + "import numpy as np\n", + "import requests\n", + "from bs4 import BeautifulSoup\n", + "import urllib.parse\n", + "import itertools\n", + "from tqdm import tqdm\n", + "import glob\n", + "from scipy.interpolate import griddata, SmoothBivariateSpline\n", + "from scipy.ndimage.filters import gaussian_filter\n", + "import colorcet as cc\n", + "import pytz" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import Chris' data\n", + "def df_from_csv(csv, index_col, data_folder='../data/interim'):\n", + " print('Importing {}'.format(csv))\n", + " return pd.read_csv(os.path.join(data_folder,csv), index_col=index_col)\n", + "\n", + "df_sites = df_from_csv('sites.csv', index_col=[0])\n", + "df_obs_impacts = df_from_csv('impacts_observed.csv', index_col=[0])\n", + "df_waves = df_from_csv('waves.csv', index_col=[0,1])\n", + "df_waves.index = df_waves.index.set_levels([df_waves.index.levels[0], pd.to_datetime(df_waves.index.levels[1])])\n", + "df_profiles = df_from_csv('profiles.csv', index_col=[0,1,2])\n", + "\n", + "# Load shoreline transects from coastsat\n", + "shoreline_transect_files = glob.glob('./15_data/df_transect_shorelines_*.csv')\n", + "df_shoreline_transects = pd.concat((pd.read_csv(f,\n", + " skiprows=0,\n", + " index_col=[0,1])\n", + " for f in shoreline_transect_files))\n", + "\n", + "# Convert index to datetime\n", + "df_shoreline_transects.index = df_shoreline_transects.index.set_levels(\n", + " [df_shoreline_transects.index.levels[0], pd.to_datetime(df_shoreline_transects.index.levels[1])])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print('df_shoreline_transects:')\n", + "df_shoreline_transects.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Calculate shoreline percentiles" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "data = []\n", + "\n", + "for site_id, df in df_shoreline_transects.groupby(['site_id']):\n", + " \n", + " # Find last date before June 2016 storm\n", + " mask = pd.Series(df.index.get_level_values('time') < datetime.datetime(2016,6,3).replace(tzinfo=pytz.utc))\n", + " i_last_obs = mask[::-1].idxmax()\n", + " prestorm_observation = df.iloc[i_last_obs]\n", + "\n", + " # Get prestorm and post storm shoreline locations\n", + " # This is a shortcut, because the last x value of our profiles are at the shoreline\n", + " # If we wanted another elevation, this code needs to change\n", + " prestorm_shoreline_x = df_profiles.loc[(site_id,'prestorm',)].dropna(subset=['z']).iloc[-1].name\n", + " poststorm_shoreline_x = df_profiles.loc[(site_id,'poststorm',)].dropna(subset=['z']).iloc[-1].name\n", + "\n", + " # Find the corresponding percentile of prestorm and poststorm shorelines\n", + " prestorm_shoreline_pct = percentileofscore(df.shoreline_chainage_w_tide_correction.dropna(), prestorm_shoreline_x)\n", + " poststorm_shoreline_pct = percentileofscore(df.shoreline_chainage_w_tide_correction.dropna(), poststorm_shoreline_x)\n", + " change_shoreline_pct = poststorm_shoreline_pct - prestorm_shoreline_pct\n", + "\n", + " data.append({\n", + " 'site_id': site_id,\n", + " 'prestorm_shoreline_x': prestorm_shoreline_x,\n", + " 'poststorm_shoreline_x': poststorm_shoreline_x,\n", + " 'prestorm_shoreline_pct': prestorm_shoreline_pct,\n", + " 'poststorm_shoreline_pct': poststorm_shoreline_pct,\n", + " 'change_shoreline_pct': change_shoreline_pct,\n", + " })\n", + "\n", + "df_shorelines_pct = pd.DataFrame(data).set_index('site_id')\n", + "\n", + "print('df_shorelines_pct:')\n", + "df_shorelines_pct.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Get wave data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Find closest nsw nearshore transformation output point to each site_id\n", + "\n", + "# Import nearshore wave site_id data\n", + "df_nearshore_ids = df_from_csv('nsw_nearshore_tool_site_locations.csv', index_col=[0],data_folder='./15_data/')\n", + "df_nearshore_ids.lat = pd.to_numeric(df_nearshore_ids.lat,errors='coerce')\n", + "df_nearshore_ids.lon = pd.to_numeric(df_nearshore_ids.lon,errors='coerce')\n", + "df_nearshore_ids.depth = pd.to_numeric(df_nearshore_ids.depth,errors='coerce')\n", + "gdf_nearshore_ids = geopandas.GeoDataFrame(\n", + " df_nearshore_ids, geometry=geopandas.points_from_xy(df_nearshore_ids.lon, df_nearshore_ids.lat))\n", + "gdf_nearshore_ids.crs = {'init' :'epsg:4283'}\n", + "gdf_nearshore_ids = gdf_nearshore_ids.to_crs(epsg=28356)\n", + "\n", + "gdf_nearshore_ids.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Convert sites to geopandas dataframe\n", + "\n", + "gdf_sites = geopandas.GeoDataFrame(\n", + " df_sites, geometry=geopandas.points_from_xy(df_sites.lon, df_sites.lat))\n", + "gdf_sites.crs = {'init' :'epsg:4283'}\n", + "gdf_sites = gdf_sites.to_crs(epsg=28356)\n", + "gdf_sites.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Warning, this cell takes around 9 mins to compute\n", + "# Need to do some optimizations\n", + "\n", + "# Calculate closest nearshore wave id for each site\n", + "from shapely.ops import nearest_points\n", + "\n", + "def near(point, df2=gdf_nearshore_ids):\n", + " # find the nearest point and return the corresponding Place value\n", + " nearest = df2.geometry == nearest_points(point, df2.geometry.unary_union)[1]\n", + " return df_nearshore_ids[nearest].index[0]\n", + "\n", + "start_time = datetime.datetime.now()\n", + "gdf_sites.loc[:,'nearshore_wave_id'] = gdf_sites.apply(lambda row: near(row.geometry), axis=1)\n", + "end_time = datetime.datetime.now()\n", + "print(\"Executed in: {}\".format(end_time - start_time))\n", + "gdf_sites.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Download wave data using the NSW nearshore transformation website, for sites where we have shoreline measurements" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def nearshore_wave_csv_url(id,start_date,end_date):\n", + " URL = 'http://www.nswaves.com.au/transform.php'\n", + " payload = {\n", + " 'init': '1',\n", + " 'type': 'Transform-Full',\n", + " 'startsite': '{}'.format(id),\n", + " 'endsite': '{}'.format(id),\n", + " 'timestep': 'null',\n", + " 'startdate': start_date.strftime('%Y-%m-%d'),\n", + " 'starthour': '00',\n", + " 'enddate': end_date.strftime('%Y-%m-%d'),\n", + " 'endhour': '00',\n", + " 'sitestep': '1',\n", + " 'method': 'Parametric',\n", + " 'source': 'Waverider',\n", + " 'filename': 'ckl',\n", + " 'format': 'csv',\n", + " }\n", + "\n", + " session = requests.session()\n", + " r = requests.post(URL, data=payload)\n", + " \n", + " soup = BeautifulSoup(r.text)\n", + " \n", + " # Check if data extraction was successful\n", + " if soup.findAll(text=\"OK : Data Extraction Successful - Click filename/s to download data file\"):\n", + "\n", + " # Find all links\n", + " for link in soup.find_all('a'):\n", + "\n", + " href = link.get('href')\n", + " if '/data/full' not in href:\n", + " continue\n", + "\n", + " # Convert to absolute convert to absolute url\n", + " csv_url = urllib.parse.urljoin(URL, href)\n", + "\n", + " return csv_url\n", + " else:\n", + " return None\n", + "\n", + " \n", + "def download_csv(url, file_path):\n", + " urllib.request.urlretrieve(url,file_path)\n", + " print('Downloaded {}'.format(file_path))\n", + " \n", + " \n", + "def daterange(start_date, end_date,delta):\n", + " while start_date < end_date:\n", + " yield start_date\n", + " start_date += delta\n", + " \n", + "def download_nearshore_csv(site_id, nsw_nearshore_id, start_date, end_date,output_folder='./15_nearshore_waves/'):\n", + " \n", + " # Create output folder if doesn't already exists\n", + " os.makedirs(output_folder, exist_ok=True)\n", + "\n", + " # Output filename\n", + " output_filename = '{}_{}_{}_{}.csv'.format(\n", + " site_id,\n", + " nsw_nearshore_id,\n", + " start_date.strftime('%Y%m%d'),\n", + " end_date.strftime('%Y%m%d'),\n", + " )\n", + " output_filepath = os.path.join(output_folder,output_filename)\n", + "\n", + " # Don't download if file already exists\n", + " if os.path.isfile(output_filepath):\n", + " return\n", + "\n", + " csv_url = nearshore_wave_csv_url(nsw_nearshore_id,start_date,end_date)\n", + "\n", + " if csv_url:\n", + " download_csv(csv_url, output_filepath)\n", + " else:\n", + " print('No url found')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df_sites[df_sites.beach.isin(['DIAMONDn','HARR','OLDBAR','DEEWHYn'])].index" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# beach = 'DIAMONDn'\n", + "# beach = 'HARR'\n", + "# beach = 'OLDBAR'\n", + "# beach = 'DEEWHYn'\n", + "\n", + "site_ids_to_get = df_sites[df_sites.beach.isin(['DIAMONDn','HARR','OLDBAR','DEEWHYn'])].index\n", + "# site_ids_to_get = df_shorelines_pct.index\n", + "\n", + "# Define what start and end year we want to get\n", + "start_year=2005\n", + "end_year=2014\n", + "\n", + "# Construct a list of start and end times we can query\n", + "date_ranges = [(datetime.datetime(x, 1, 1), datetime.datetime(x, 12, 31))\n", + " for x in range(start_year, end_year + 1)]\n", + "\n", + "# Creates a list of inputs...\n", + "# [('NARRA0001',\n", + "# (datetime.datetime(2005, 1, 1, 0, 0),\n", + "# datetime.datetime(2005, 12, 31, 0, 0))),\n", + "# ('NARRA0001',\n", + "# (datetime.datetime(2006, 1, 1, 0, 0),\n", + "# datetime.datetime(2006, 12, 31, 0, 0))), ...\n", + "inputs = [x for x in list(itertools.product(site_ids_to_get, date_ranges))]\n", + "\n", + "for input_params in inputs:\n", + " site_id, (start_date, end_date) = input_params\n", + " download_nearshore_csv(site_id=site_id,\n", + " nsw_nearshore_id = gdf_sites.loc[site_id].nearshore_wave_id,\n", + " start_date=start_date,\n", + " end_date=end_date)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Calculate mean wave conditions" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "from tqdm import tqdm\n", + "wave_power_data = []\n", + "\n", + "# For each site, calculate mean wave power and storm wave power\n", + "site_ids = df_shorelines_pct.index\n", + "\n", + "for site_id in tqdm(site_ids):\n", + " \n", + " # Get shoreline orientation\n", + " orientation = df_sites.loc[site_id].orientation\n", + "\n", + "# # Get peak hour wave energy from June 2016 storm\n", + "# max_hrly_wave_power = df_waves.loc[[site['site_id']]].Pxs.max()\n", + "\n", + " # Load nearshore wave csv files into one dataframe\n", + " site_nearshore_wave_files = glob.glob('./15_nearshore_waves/*{}*'.format(site_id))\n", + "\n", + " if len(site_nearshore_wave_files) == 0:\n", + " continue\n", + "\n", + " df_hist_waves = pd.concat((pd.read_csv(f,\n", + " skiprows=8,\n", + " index_col=0,\n", + " names=['Hs', 'Tp', 'dir'],\n", + " na_values=' NaN')\n", + " for f in site_nearshore_wave_files))\n", + " df_hist_waves.index = pd.to_datetime(df_hist_waves.index)\n", + "\n", + " # At each row, calculate crossshore component of nearshore wave energy\n", + " df_hist_waves['d'] = 10\n", + " df_hist_waves['L'] = 9.81 * df_hist_waves.Tp**2 / 2 / np.pi\n", + " df_hist_waves['n'] = 0.5 * (\n", + " 1 + (4 * np.pi * df_hist_waves.d / df_hist_waves.L) /\n", + " (np.sinh(4 * np.pi * df_hist_waves.d / df_hist_waves.L)))\n", + " df_hist_waves['E'] = 1 / 16 * 1025 * 9.81 * df_hist_waves.Hs**2\n", + " df_hist_waves['C'] = 9.81 * df_hist_waves.Tp / 2 / np.pi * np.tanh(\n", + " 2 * np.pi * df_hist_waves.d / df_hist_waves.L)\n", + " df_hist_waves['shoreline_tn_angle'] = 270 - orientation\n", + " df_hist_waves.loc[\n", + " df_hist_waves.shoreline_tn_angle > 360,\n", + " 'shoreline_tn_angle'] = df_hist_waves.shoreline_tn_angle - 360\n", + " df_hist_waves[\n", + " 'alpha'] = df_hist_waves.shoreline_tn_angle - df_hist_waves.dir\n", + " df_hist_waves[\n", + " 'Px'] = df_hist_waves.n * df_hist_waves.E * df_hist_waves.C * np.cos(\n", + " np.deg2rad(df_hist_waves.alpha))\n", + "\n", + "# # Apply percentileofscore for June 2016 wave energy\n", + "# storm_Px_hrly_pctile = percentileofscore(df_hist_waves.Px.dropna().values,\n", + "# max_hrly_wave_power,\n", + "# kind='mean')\n", + "\n", + " # Calculate cumulate wave energy from storm\n", + " idx = ((df_waves.index.get_level_values('datetime') > '2016-06-04') &\n", + " (df_waves.index.get_level_values('datetime') < '2016-06-07') &\n", + " (df_waves.index.get_level_values('site_id') == site_id))\n", + " hrs = len(df_waves[idx])\n", + " Pxscum_storm = df_waves[idx].Pxs.sum()\n", + " \n", + " # Calculate cumulate wave energy of mean wave conditions over length of storm\n", + " Pxscum_mean = df_hist_waves['Px'].mean() * hrs\n", + " Pxscum_storm_mean_ratio = Pxscum_storm / Pxscum_mean\n", + "\n", + " wave_power_data.append({\n", + " 'site_id': site_id,\n", + " 'Pxscum_mean': Pxscum_mean,\n", + " 'Pxscum_storm': Pxscum_storm,\n", + " 'Pxscum_storm_mean_ratio': Pxscum_storm_mean_ratio\n", + " })\n", + "\n", + "df_wave_power = pd.DataFrame(wave_power_data).set_index('site_id')\n", + "df_wave_power.head()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plot data" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Combine data into one data frame\n", + "df_plot = pd.concat([df_wave_power,df_shorelines_pct],axis=1)\n", + "df_plot.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Define some helper functions\n", + "def round_down(num, divisor):\n", + " return num - (num%divisor)\n", + "\n", + "def round_up(x, divisor): \n", + " return (x + divisor - 1) // divisor * divisor" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Create interpolated grid to plot\n", + "x_col = 'Pxscum_storm_mean_ratio'\n", + "y_col = 'prestorm_shoreline_pct'\n", + "z_col = 'change_shoreline_pct'\n", + "\n", + "# Grid data\n", + "x_grid_max = round_up(max(df_plot[x_col]), 2)\n", + "y_grid_max = 100\n", + "\n", + "grid_x, grid_y = np.mgrid[0:x_grid_max:100j, 0:y_grid_max:100j]\n", + "\n", + "x_vals = df_plot[x_col].values\n", + "y_vals = df_plot[y_col].values\n", + "z_vals = df_plot[z_col].values\n", + "\n", + "points = [[x, y] for x, y in zip(\n", + " x_vals,\n", + " y_vals,\n", + ")]\n", + "\n", + "grid = griddata((x_vals,y_vals), z_vals, (grid_x, grid_y), method='linear',rescale=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#https://stackoverflow.com/a/47500863\n", + "import scipy as sp\n", + "import scipy.interpolate\n", + "from mpl_toolkits.mplot3d import axes3d\n", + "spline = sp.interpolate.Rbf(x_vals,y_vals,z_vals,function='linear',smooth=30)\n", + "\n", + "x_grid = np.linspace(0, max(x_vals), 100)\n", + "y_grid = np.linspace(0, max(y_vals), 100)\n", + "B1, B2 = np.meshgrid(x_grid, y_grid, indexing='xy')\n", + "Z = np.zeros((x_vals.size, z_vals.size))\n", + "\n", + "Z = spline(B1,B2)\n", + "fig = plt.figure(figsize=(10,6))\n", + "ax = axes3d.Axes3D(fig)\n", + "ax.view_init(elev=10., azim=230)\n", + "ax.plot_wireframe(B1, B2, Z,alpha=0.1)\n", + "ax.plot_surface(B1, B2, Z,alpha=0.1)\n", + "ax.scatter3D(x_vals,y_vals,z_vals, c='r')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Create figure\n", + "fig = plt.figure(figsize=(3, 3), dpi=150, facecolor='w', edgecolor='k')\n", + "ax = fig.add_subplot(111)\n", + "\n", + "# Define colors\n", + "cmap_interval = 25\n", + "cmap = cc.cm.fire\n", + "vmin = round_down(np.min(z_vals), cmap_interval)\n", + "vmax = round_up(np.max(z_vals), cmap_interval)\n", + "levels = [x*cmap_interval for x in range(-4,2)]\n", + "\n", + "# Plot grid surface\n", + "cf = plt.contourf(grid_x, grid_y,grid,levels=levels, cmap=cmap,vmin=vmin,vmax=vmax)\n", + "\n", + "# Plot contours\n", + "cs = plt.contour(grid_x, grid_y,grid,levels=levels,linewidths=0.5,colors='white', vmin=vmin,vmax=vmax)\n", + "ax.clabel(cs, inline=1, fontsize=4, fmt='%1.0f%%')\n", + "\n", + "scatter = ax.scatter(\n", + " x=x_vals,\n", + " y=y_vals,\n", + " c=z_vals,\n", + " s=10,\n", + " linewidth=0.8,\n", + " edgecolor='k',\n", + " cmap=cmap,vmin=vmin,vmax=vmax\n", + ")\n", + "\n", + "ax.set_xlim([round_down(min(x_vals), 1),round_up(max(x_vals), 1)])\n", + "\n", + "ax.set_xlabel(x_col)\n", + "ax.set_ylabel(y_col)\n", + "\n", + "cbar = plt.colorbar(cf)\n", + "cbar.set_label(z_col)\n", + "\n", + "ax.grid(True, linestyle=\"--\", alpha=0.2, color='grey', linewidth=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Working" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Find which beaches we should extract next\n", + "\n", + "d = pd.concat([df_sites, df_obs_impacts], axis=1)\n", + "for site_id, df in d.groupby(['beach']):\n", + " break\n", + " \n", + "d_msl_change= d.groupby(['beach']).width_msl_change_m.mean()\n", + "d_site_count = d.groupby(['beach']).lat.count()\n", + "d_site_count_msl_change = pd.concat([d_msl_change,d_site_count],axis=1).sort_values(by='width_msl_change_m')\n", + "l = len(d_site_count_msl_change)\n", + "print(d_site_count_msl_change[:10])\n", + "print('...')\n", + "print(d_site_count_msl_change[int(l/2-5):int(l/2+5)])\n", + "print('...')\n", + "print(d_site_count_msl_change[-10:])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Get polygons for coastsat\n", + "\n", + "# beach = 'DIAMONDn'\n", + "# beach = 'HARR'\n", + "# beach = 'OLDBAR'\n", + "beach = 'DEEWHYn'\n", + "buffer = 0.3 #percent\n", + "\n", + "points = MultiPoint([Point(r[1].lon, r[1].lat) for r in df_sites[df_sites.beach==beach].iterrows()])\n", + "# bounds = points.envelope.bounds\n", + "bounds = points.minimum_rotated_rectangle.bounds\n", + "\n", + "lon_range = bounds[2] - bounds[0]\n", + "lat_range = bounds[3] - bounds[1]\n", + "\n", + "x1 = bounds[0] - lon_range * buffer\n", + "x2 = bounds[2] + lon_range* buffer\n", + "y1 = bounds[1] - lat_range * buffer\n", + "y2 = bounds[3] + lat_range * buffer\n", + "\n", + "# Create our polygon\n", + "polygon = [[[x1, y1],\n", + " [x1, y2],\n", + " [x2, y2],\n", + " [x2, y1],\n", + " [x1, y1]]] \n", + "\n", + "print(beach)\n", + "polygon" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/analysis/observed_storm_impacts.py b/src/analysis/observed_storm_impacts.py index 66f681f..321bd68 100644 --- a/src/analysis/observed_storm_impacts.py +++ b/src/analysis/observed_storm_impacts.py @@ -172,7 +172,12 @@ def volume_change(df_profiles, df_profile_features): elif zone == "dune": d["x_min"] = df_profile_feature.dune_crest_x - d["x_max"] = df_profile_feature.dune_toe_x + + if np.isnan(df_profile_feature.dune_toe_x): + # If there's no dune toe, take most seaward value + d["x_max"] = max(df_profile.index.get_level_values("x")) + else: + d["x_max"] = df_profile_feature.dune_toe_x # For profiles with no Dlow value, the dune is undefined and we cannot calculate a dune volume. @@ -188,6 +193,10 @@ def volume_change(df_profiles, df_profile_features): # Calculate change in volumes. Use the z_diff array which has been # zero'ed out landward of the x_change_point + + # Zero out nans so we can calculate change in beach volume. + z_diff.loc[np.isnan(z_diff)] = 0 + params[zone]["vol_change"] = beach_volume( x=z_diff.index.values, z=z_diff.values, @@ -195,6 +204,9 @@ def volume_change(df_profiles, df_profile_features): x_max=params[zone]["prestorm"]["x_max"], ) + if (zone == 'dune') & (np.isnan(params[zone]['vol_change'])): + print(site_id) + params[zone]["pct_change"] = ( params[zone]["vol_change"] / params[zone]["prestorm"]["subaerial_vol"] )